From 7b31cf4cf26859b49c65c0fb4b738d8b4e7fc745 Mon Sep 17 00:00:00 2001 From: Evan Sangaline Date: Wed, 21 Aug 2024 19:11:31 -0500 Subject: [PATCH] Use the lighter status polling endpoint while waiting for compiling or proving This switches the client over from using the full proof/circuit detail endpoints in favor of using the lighter status endpoints. This should improve performance slightly for users and reduce bandwidth usage. Merges #137 LGTM given by: @KPreisner --- src/cli/deploy.ts | 28 +- src/lib/client.ts | 27 +- test/fixtures/browser.test.ts.json | 26229 +++++++++++++++++++++----- test/fixtures/sdk.test.ts.json | 26479 +++++++++++++++++++++------ 4 files changed, 41886 insertions(+), 10877 deletions(-) diff --git a/src/cli/deploy.ts b/src/cli/deploy.ts index d35ef45..8c4072a 100644 --- a/src/cli/deploy.ts +++ b/src/cli/deploy.ts @@ -1,3 +1,4 @@ +import assert from "node:assert"; import { Blob } from "buffer"; import { existsSync, readFileSync } from "fs"; import path from "path"; @@ -10,7 +11,7 @@ import tar from "tar"; import { collectMetaWithLogger, findFileUpwards } from "cli/utils"; import sindri from "lib"; -import { ApiError } from "lib/api"; +import { ApiError, CircuitInfoResponse, CircuitStatusResponse } from "lib/api"; import { getDefaultMeta } from "lib/utils"; interface CollectedTags extends Array { @@ -198,26 +199,35 @@ export const deployCommand = new Command() while (true) { try { sindri.logger.debug("Polling for circuit compilation status."); - const response = await sindri._client.circuits.circuitDetail( - circuitId, - false, - ); + // Get the fast status response first for performance. + const statusResponse: CircuitStatusResponse = + await sindri._client.internal.circuitStatus(circuitId); + + // Get the full circuit response only if the compilation is complete or failed. + const response: CircuitInfoResponse | null = [ + "Failed", + "Ready", + ].includes(statusResponse.status) + ? await sindri._client.circuits.circuitDetail(circuitId, false) + : null; + // Check the circuit status and log the appropriate message. const elapsedSeconds = ((Date.now() - startTime) / 1000).toFixed(1); - if (response.status === "Ready") { + if (statusResponse.status === "Ready") { sindri.logger.info( `Circuit compiled successfully after ${elapsedSeconds} seconds.`, ); break; - } else if (response.status === "Failed") { + } else if (statusResponse.status === "Failed") { + assert(response != null); sindri.logger.error( `Circuit compilation failed after ${elapsedSeconds} seconds: ` + (response.error ?? "Unknown error."), ); return process.exit(1); - } else if (response.status === "Queued") { + } else if (statusResponse.status === "Queued") { sindri.logger.debug("Circuit compilation is queued."); - } else if (response.status === "In Progress") { + } else if (statusResponse.status === "In Progress") { sindri.logger.debug("Circuit compilation is in progress."); } } catch (error) { diff --git a/src/lib/client.ts b/src/lib/client.ts index 3a4f802..26a8143 100644 --- a/src/lib/client.ts +++ b/src/lib/client.ts @@ -12,11 +12,13 @@ import { ApiClient, CircuitType, JobStatus, OpenAPIConfig } from "lib/api"; import type { BoojumCircuitInfoResponse, CircomCircuitInfoResponse, + CircuitStatusResponse, GnarkCircuitInfoResponse, Halo2CircuitInfoResponse, NoirCircuitInfoResponse, Plonky2CircuitInfoResponse, ProofInfoResponse, + ProofStatusResponse, } from "lib/api"; import { Config } from "lib/config"; import { createLogger, type Logger, type LogLevel } from "lib/logging"; @@ -556,16 +558,16 @@ export class SindriClient { this._clientConfig.HEADERS = oldHeaders; const circuitId = createResponse.circuit_id; - let response: CircuitInfoResponse; while (true) { - response = await this._client.circuits.circuitDetail(circuitId, false); + const response: CircuitStatusResponse = + await this._client.internal.circuitStatus(circuitId); if (response.status === "Ready" || response.status === "Failed") { break; } await new Promise((resolve) => setTimeout(resolve, this.pollingInterval)); } - return response; + return this._client.circuits.circuitDetail(circuitId, false); } /** @@ -689,21 +691,22 @@ export class SindriClient { perform_verify: verify, proof_input: proofInput, }); - let response: ProofInfoResponse; + const proofId: string = createResponse.proof_id; while (true) { - response = await this._client.proofs.proofDetail( - createResponse.proof_id, - true, // includeProof - true, // includePublic - includeSmartContractCalldata, // includeSmartContractCalldata - true, // includeVerificationKey - ); + const response: ProofStatusResponse = + await this._client.internal.proofStatus(proofId); if (response.status === "Ready" || response.status === "Failed") { break; } await new Promise((resolve) => setTimeout(resolve, this.pollingInterval)); } - return response; + return this._client.proofs.proofDetail( + proofId, + true, // includeProof + true, // includePublic + includeSmartContractCalldata, // includeSmartContractCalldata + true, // includeVerificationKey + ); } } diff --git a/test/fixtures/browser.test.ts.json b/test/fixtures/browser.test.ts.json index c515181..343eccb 100644 --- a/test/fixtures/browser.test.ts.json +++ b/test/fixtures/browser.test.ts.json @@ -20,11 +20,11 @@ "Content-Type", "text/plain; charset=\"utf-8\"", "Date", - "Mon, 19 Aug 2024 23:03:49 GMT", + "Wed, 21 Aug 2024 23:45:35 GMT", "Etag", - "\"66be5f1a-19e\"", + "\"66c63c3f-19e\"", "Last-Modified", - "Thu, 15 Aug 2024 20:03:38 GMT", + "Wed, 21 Aug 2024 19:13:03 GMT", "Server", "gunicorn", "Vary", @@ -36,14 +36,14 @@ "scope": "https://sindri.app:443", "method": "POST", "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e646172794d4a626e366f3942383342443259704f0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a62726f777365722d6372656174652d70726f6f662d6d756c7469706c696572322d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172794d4a626e366f3942383342443259704f0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172794d4a626e366f3942383342443259704f0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172794d4a626e366f3942383342443259704f2d2d0d0a", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e6461727930533341486f464f354d6838737643390d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a62726f777365722d6372656174652d70726f6f662d6d756c7469706c696572322d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727930533341486f464f354d6838737643390d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727930533341486f464f354d6838737643390d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727930533341486f464f354d6838737643392d2d0d0a", "status": 201, "response": { - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.703Z", + "date_created": "2024-08-21T23:45:35.868Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", @@ -52,9 +52,9 @@ "tags": [ "browser-create-proof-multiplier2-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, @@ -75,17 +75,80 @@ }, "rawHeaders": [ "Content-Length", - "948", + "939", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:49 GMT", + "Wed, 21 Aug 2024 23:45:36 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279415635644a59634b3430436e464562390d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279415635644a59634b3430436e464562390d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279415635644a59634b3430436e464562390d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279415635644a59634b3430436e464562392d2d0d0a", + "status": 201, + "response": { + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-21T23:45:35.878Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Queued", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "queue_time": null, + "queue_time_sec": null, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "922", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:36 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -103,22 +166,22 @@ "status": 200, "response": [ { - "circuit_id": "dcc44a41-540f-4ebe-949d-ad7b26e58816", + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.848Z", + "date_created": "2024-08-21T23:45:34.912Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, "status": "Queued", "tags": [ - "from-tarball" + "from-tarball-for-get-proof" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, @@ -138,28 +201,28 @@ "num_public_inputs": null }, { - "circuit_id": "088af0b5-7219-493d-9299-80cba9801fcb", + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.789Z", + "date_created": "2024-08-21T23:45:34.523Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Queued", "tags": [ - "from-tarball-for-get-circuit" + "from-tarball-for-all-circuit-proofs" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, "file_size": 529, - "queue_time": "P0DT00H00M00.309653S", - "queue_time_sec": 0.309653, + "queue_time": null, + "queue_time_sec": null, "uploaded_file_name": "circom-multiplier2.tgz", "has_smart_contract_verifier": false, "has_verification_key": false, @@ -173,29 +236,29 @@ "num_public_inputs": null }, { - "circuit_id": "b72ea400-2d09-49b4-a404-2c22d5c130a1", + "circuit_id": "76a8ec52-691a-4c7c-ae2c-3a4961bfac7e", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.745Z", + "date_created": "2024-08-21T23:45:34.483Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, "status": "Queued", "tags": [ - "from-directory" + "from-tarball-for-get-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 555, + "file_size": 529, "queue_time": null, "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "uploaded_file_name": "circom-multiplier2.tgz", "has_smart_contract_verifier": false, "has_verification_key": false, "verification_key": null, @@ -208,29 +271,29 @@ "num_public_inputs": null }, { - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", + "circuit_id": "01574955-62ba-440d-9984-baa5ff70a924", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.560Z", + "date_created": "2024-08-21T23:45:34.475Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Queued", "tags": [ - "from-tarball-for-all-circuit-proofs" + "sdk-create-proof-multiplier2-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.389084S", - "queue_time_sec": 0.389084, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 556, + "queue_time": null, + "queue_time_sec": null, + "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": false, "has_verification_key": false, "verification_key": null, @@ -243,29 +306,29 @@ "num_public_inputs": null }, { - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", + "circuit_id": "1c459443-df9d-46b1-a0e1-50b5d0cbc5ab", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.493Z", + "date_created": "2024-08-21T23:45:34.465Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Queued", "tags": [ - "from-tarball-for-get-proof" + "from-file-array" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.773657S", - "queue_time_sec": 0.773657, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 537, + "queue_time": null, + "queue_time_sec": null, + "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": false, "has_verification_key": false, "verification_key": null, @@ -278,29 +341,29 @@ "num_public_inputs": null }, { - "circuit_id": "8585a51c-3f3b-4a16-8cc8-05a0eb22abb3", + "circuit_id": "e698a24e-351f-448a-8116-1a50bca6cb67", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.491Z", + "date_created": "2024-08-21T23:45:34.429Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, "status": "Queued", "tags": [ - "from-file-array" + "from-tarball" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 537, + "file_size": 529, "queue_time": null, "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "uploaded_file_name": "circom-multiplier2.tgz", "has_smart_contract_verifier": false, "has_verification_key": false, "verification_key": null, @@ -313,28 +376,28 @@ "num_public_inputs": null }, { - "circuit_id": "991c35b0-5da2-4baf-ae42-be2480d98458", + "circuit_id": "451ef924-1cb3-4a5f-b5ef-48a295880052", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.489Z", + "date_created": "2024-08-21T23:45:34.168Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Queued", "tags": [ "from-tarball-for-prove-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, "file_size": 529, - "queue_time": "P0DT00H00M00.332778S", - "queue_time_sec": 0.332778, + "queue_time": null, + "queue_time_sec": null, "uploaded_file_name": "circom-multiplier2.tgz", "has_smart_contract_verifier": false, "has_verification_key": false, @@ -348,77 +411,90 @@ "num_public_inputs": null }, { - "circuit_id": "42244641-5311-4335-ba6f-45f8be17e8ad", + "circuit_id": "36050a59-db0a-4fe3-ad35-911ec40dcb5d", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.488Z", + "date_created": "2024-08-21T23:35:17.847Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Ready", "tags": [ - "sdk-create-proof-multiplier2-circuit" + "from-browser-file-array" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.444749S", - "queue_time_sec": 0.444749, + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.380557S", + "compute_time_sec": 7.380557, + "compute_times": { + "total": 7.43604, + "clean_up": 0.05549, + "create_cpp": 0.10428, + "file_setup": 0.49115, + "compile_cpp": 3.15138, + "create_r1cs": 0.00713, + "save_results": 0.68226, + "get_r1cs_info": 0.00026, + "groth16_setup": 1.01287, + "export_verification_key": 0.97057, + "download_trusted_setup_file": 0.0008, + "solidity_contract_generation": 0.95986 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M35.783578S", + "queue_time_sec": 35.783578, "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, + "has_smart_contract_verifier": true, + "has_verification_key": true, "verification_key": null, "warnings": null, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, { - "circuit_id": "9f87946e-feb4-4127-8243-d878ce00695c", + "circuit_id": "610928ec-9478-44d7-a238-f269570326bb", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:53.315Z", + "date_created": "2024-08-21T23:35:17.764Z", "meta": {}, - "num_proofs": 1, + "num_proofs": 0, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-tarball-for-get-proof" + "from-browser-file-array-for-get-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H02M01.856241S", - "compute_time_sec": 121.856241, - "compute_times": { - "total": 121.86847, - "clean_up": 0.01223, - "create_cpp": 0.47208, - "file_setup": 102.78775, - "compile_cpp": 7.67076, - "create_r1cs": 0.02696, - "save_results": 1.74644, - "get_r1cs_info": 0.0007, - "groth16_setup": 2.67824, - "export_verification_key": 2.52956, - "download_trusted_setup_file": 1.41641, - "solidity_contract_generation": 2.52734 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.376999S", + "compute_time_sec": 8.376999, + "compute_times": { + "total": 8.42465, + "clean_up": 0.04765, + "create_cpp": 0.10357, + "file_setup": 0.49752, + "compile_cpp": 3.15577, + "create_r1cs": 0.00737, + "save_results": 0.69868, + "get_r1cs_info": 0.0002, + "groth16_setup": 0.96151, + "export_verification_key": 1.00177, + "download_trusted_setup_file": 0.99059, + "solidity_contract_generation": 0.96001 }, - "file_size": 236732, - "queue_time": "P0DT00H00M44.084809S", - "queue_time_sec": 44.084809, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 236740, + "queue_time": "P0DT00H00M38.041232S", + "queue_time_sec": 38.041232, + "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, "verification_key": null, @@ -431,41 +507,41 @@ "num_public_inputs": 0 }, { - "circuit_id": "497d92a3-7a5f-49a7-91b4-feaa507dc08b", + "circuit_id": "aab5b1a6-c9df-4aa5-850a-8dd54d4fc630", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:53.295Z", + "date_created": "2024-08-21T23:35:17.747Z", "meta": {}, - "num_proofs": 0, + "num_proofs": 1, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-browser-file-array-for-prove-circuit" + "from-browser-file-array-for-get-proof" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H02M08.602885S", - "compute_time_sec": 128.602885, - "compute_times": { - "total": 128.61682, - "clean_up": 0.01394, - "create_cpp": 0.53445, - "file_setup": 108.99449, - "compile_cpp": 8.54259, - "create_r1cs": 0.02794, - "save_results": 1.69189, - "get_r1cs_info": 0.00053, - "groth16_setup": 2.354, - "export_verification_key": 2.53503, - "download_trusted_setup_file": 1.40071, - "solidity_contract_generation": 2.52124 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.109107S", + "compute_time_sec": 7.109107, + "compute_times": { + "total": 7.15023, + "clean_up": 0.04112, + "create_cpp": 0.16976, + "file_setup": 0.48058, + "compile_cpp": 3.28511, + "create_r1cs": 0.00904, + "save_results": 0.71391, + "get_r1cs_info": 0.00022, + "groth16_setup": 0.80765, + "export_verification_key": 0.82646, + "download_trusted_setup_file": 0.00084, + "solidity_contract_generation": 0.81553 }, "file_size": 236740, - "queue_time": "P0DT00H00M49.602689S", - "queue_time_sec": 49.602689, + "queue_time": "P0DT00H00M33.051664S", + "queue_time_sec": 33.051664, "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -479,42 +555,42 @@ "num_public_inputs": 0 }, { - "circuit_id": "9cb8cbb6-6717-42e5-bfa6-efdb6923f62a", + "circuit_id": "8222d5b6-befb-4f71-9e7b-6469b917b7ca", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:53.139Z", + "date_created": "2024-08-21T23:35:17.726Z", "meta": {}, "num_proofs": 1, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-tarball-for-prove-circuit" + "browser-create-proof-multiplier2-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H01M09.108498S", - "compute_time_sec": 69.108498, - "compute_times": { - "total": 69.12153, - "clean_up": 0.01303, - "create_cpp": 0.21627, - "file_setup": 55.59628, - "compile_cpp": 5.4122, - "create_r1cs": 0.01352, - "save_results": 1.74063, - "get_r1cs_info": 0.00051, - "groth16_setup": 1.49919, - "export_verification_key": 1.52744, - "download_trusted_setup_file": 1.60387, - "solidity_contract_generation": 1.49858 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.343132S", + "compute_time_sec": 7.343132, + "compute_times": { + "total": 7.38117, + "clean_up": 0.03804, + "create_cpp": 0.09991, + "file_setup": 0.46715, + "compile_cpp": 3.1895, + "create_r1cs": 0.00663, + "save_results": 0.67915, + "get_r1cs_info": 0.00021, + "groth16_setup": 0.98411, + "export_verification_key": 0.92848, + "download_trusted_setup_file": 0.00076, + "solidity_contract_generation": 0.98724 }, - "file_size": 236732, - "queue_time": "P0DT00H00M43.245549S", - "queue_time_sec": 43.245549, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 236740, + "queue_time": "P0DT00H00M25.960484S", + "queue_time_sec": 25.960484, + "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, "verification_key": null, @@ -527,41 +603,41 @@ "num_public_inputs": 0 }, { - "circuit_id": "c7bde157-846a-4945-a7bb-1e4154ffacf6", + "circuit_id": "ad50072f-d51c-4d7e-894c-b0bc9df8f13b", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:53.105Z", + "date_created": "2024-08-21T23:35:17.673Z", "meta": {}, - "num_proofs": 0, + "num_proofs": 1, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-browser-file-array-for-get-circuit" + "from-browser-file-array-for-prove-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H01M07.683059S", - "compute_time_sec": 67.683059, - "compute_times": { - "total": 67.69383, - "clean_up": 0.01077, - "create_cpp": 0.16447, - "file_setup": 55.33005, - "compile_cpp": 5.28732, - "create_r1cs": 0.01694, - "save_results": 1.78737, - "get_r1cs_info": 0.00039, - "groth16_setup": 1.20579, - "export_verification_key": 1.18755, - "download_trusted_setup_file": 1.54519, - "solidity_contract_generation": 1.158 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.742742S", + "compute_time_sec": 10.742742, + "compute_times": { + "total": 10.76712, + "clean_up": 0.02438, + "create_cpp": 0.18859, + "file_setup": 0.45031, + "compile_cpp": 5.02003, + "create_r1cs": 0.01146, + "save_results": 0.72694, + "get_r1cs_info": 0.00043, + "groth16_setup": 1.43951, + "export_verification_key": 1.46105, + "download_trusted_setup_file": 0.00149, + "solidity_contract_generation": 1.44293 }, "file_size": 236740, - "queue_time": "P0DT00H00M40.258010S", - "queue_time_sec": 40.25801, + "queue_time": "P0DT00H00M37.528721S", + "queue_time_sec": 37.528721, "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -575,41 +651,41 @@ "num_public_inputs": 0 }, { - "circuit_id": "80919e3a-b1f1-43e6-a19f-939b4ec60875", + "circuit_id": "412b58a9-a9da-4f67-8364-4a5759b24899", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:53.039Z", + "date_created": "2024-08-21T23:35:17.381Z", "meta": {}, "num_proofs": 1, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "browser-create-proof-multiplier2-circuit" + "from-browser-file-array-for-get-all-circuit-proofs" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H01M16.286594S", - "compute_time_sec": 76.286594, - "compute_times": { - "total": 76.30469, - "clean_up": 0.0181, - "create_cpp": 0.20123, - "file_setup": 62.87893, - "compile_cpp": 5.43432, - "create_r1cs": 0.0143, - "save_results": 1.88281, - "get_r1cs_info": 0.00061, - "groth16_setup": 1.43763, - "export_verification_key": 1.4178, - "download_trusted_setup_file": 1.6005, - "solidity_contract_generation": 1.41846 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.907843S", + "compute_time_sec": 11.907843, + "compute_times": { + "total": 11.94823, + "clean_up": 0.04039, + "create_cpp": 0.19381, + "file_setup": 0.55117, + "compile_cpp": 5.10421, + "create_r1cs": 0.01457, + "save_results": 0.77747, + "get_r1cs_info": 0.00043, + "groth16_setup": 1.42702, + "export_verification_key": 1.40211, + "download_trusted_setup_file": 1.02669, + "solidity_contract_generation": 1.41037 }, "file_size": 236740, - "queue_time": "P0DT00H00M37.103704S", - "queue_time_sec": 37.103704, + "queue_time": "P0DT00H00M25.714884S", + "queue_time_sec": 25.714884, "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -623,41 +699,41 @@ "num_public_inputs": 0 }, { - "circuit_id": "81bf4aa0-7750-413d-84bd-f0f689c2a7bb", + "circuit_id": "41029810-d9e0-47ac-a7de-546849824809", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:53.032Z", + "date_created": "2024-08-21T23:35:16.423Z", "meta": {}, "num_proofs": 1, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-browser-file-array-for-get-proof" + "sdk-create-proof-multiplier2-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H01M02.604865S", - "compute_time_sec": 62.604865, - "compute_times": { - "total": 62.63002, - "clean_up": 0.02516, - "create_cpp": 0.16035, - "file_setup": 50.13667, - "compile_cpp": 5.43182, - "create_r1cs": 0.01841, - "save_results": 1.67922, - "get_r1cs_info": 0.00046, - "groth16_setup": 1.18516, - "export_verification_key": 1.23388, - "download_trusted_setup_file": 1.54563, - "solidity_contract_generation": 1.21327 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.031354S", + "compute_time_sec": 7.031354, + "compute_times": { + "total": 7.07244, + "clean_up": 0.04108, + "create_cpp": 0.14415, + "file_setup": 0.48456, + "compile_cpp": 3.24479, + "create_r1cs": 0.00909, + "save_results": 0.68806, + "get_r1cs_info": 0.00023, + "groth16_setup": 0.8156, + "export_verification_key": 0.80904, + "download_trusted_setup_file": 0.00085, + "solidity_contract_generation": 0.83498 }, - "file_size": 236740, - "queue_time": "P0DT00H00M39.506071S", - "queue_time_sec": 39.506071, + "file_size": 236759, + "queue_time": "P0DT00H00M26.114697S", + "queue_time_sec": 26.114697, "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -671,41 +747,41 @@ "num_public_inputs": 0 }, { - "circuit_id": "076bc14f-b178-4839-b7e2-a81de7886aa1", + "circuit_id": "e0a01eb5-9516-46fa-ad01-992a6a090a89", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:53.025Z", + "date_created": "2024-08-21T23:35:16.371Z", "meta": {}, - "num_proofs": 0, + "num_proofs": 1, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-tarball-for-get-circuit" + "from-tarball-for-prove-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H02M08.101221S", - "compute_time_sec": 128.101221, - "compute_times": { - "total": 128.11541, - "clean_up": 0.01419, - "create_cpp": 0.48448, - "file_setup": 109.3077, - "compile_cpp": 8.74554, - "create_r1cs": 0.02788, - "save_results": 1.76212, - "get_r1cs_info": 0.00074, - "groth16_setup": 2.37999, - "export_verification_key": 2.00555, - "download_trusted_setup_file": 1.40442, - "solidity_contract_generation": 1.98279 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.941748S", + "compute_time_sec": 11.941748, + "compute_times": { + "total": 11.99089, + "clean_up": 0.04915, + "create_cpp": 0.18828, + "file_setup": 0.59149, + "compile_cpp": 4.94017, + "create_r1cs": 0.01134, + "save_results": 0.82021, + "get_r1cs_info": 0.00036, + "groth16_setup": 1.40283, + "export_verification_key": 1.47751, + "download_trusted_setup_file": 1.08976, + "solidity_contract_generation": 1.41979 }, "file_size": 236732, - "queue_time": "P0DT00H00M35.696266S", - "queue_time_sec": 35.696266, + "queue_time": "P0DT00H00M25.273069S", + "queue_time_sec": 25.273069, "uploaded_file_name": "circom-multiplier2.tgz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -719,41 +795,41 @@ "num_public_inputs": 0 }, { - "circuit_id": "d63d4c8a-59a9-4762-8eb7-27872fb1529f", + "circuit_id": "0fc62575-bc4c-418f-9172-07efede02fa6", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:52.737Z", + "date_created": "2024-08-21T23:35:16.359Z", "meta": {}, - "num_proofs": 1, + "num_proofs": 0, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-tarball-for-all-circuit-proofs" + "from-tarball" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H01M58.910666S", - "compute_time_sec": 118.910666, - "compute_times": { - "total": 118.93168, - "clean_up": 0.02102, - "create_cpp": 0.50121, - "file_setup": 100.19041, - "compile_cpp": 8.18066, - "create_r1cs": 0.02439, - "save_results": 1.70199, - "get_r1cs_info": 0.0007, - "groth16_setup": 2.35503, - "export_verification_key": 2.1752, - "download_trusted_setup_file": 1.38474, - "solidity_contract_generation": 2.39634 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.477889S", + "compute_time_sec": 7.477889, + "compute_times": { + "total": 7.54664, + "clean_up": 0.06875, + "create_cpp": 0.0871, + "file_setup": 0.4021, + "compile_cpp": 3.17738, + "create_r1cs": 0.0069, + "save_results": 0.77626, + "get_r1cs_info": 0.0002, + "groth16_setup": 0.99635, + "export_verification_key": 0.99693, + "download_trusted_setup_file": 0.00076, + "solidity_contract_generation": 1.0339 }, "file_size": 236732, - "queue_time": "P0DT00H00M31.415770S", - "queue_time_sec": 31.41577, + "queue_time": "P0DT00H00M18.570880S", + "queue_time_sec": 18.57088, "uploaded_file_name": "circom-multiplier2.tgz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -767,41 +843,41 @@ "num_public_inputs": 0 }, { - "circuit_id": "427a4837-5518-48b3-8eab-4ea5a6f02e73", + "circuit_id": "b1498917-ac23-476b-bf79-03307108bf08", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:52.440Z", + "date_created": "2024-08-21T23:35:15.913Z", "meta": {}, - "num_proofs": 1, + "num_proofs": 0, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "sdk-create-proof-multiplier2-circuit" + "from-file-array" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H01M56.932509S", - "compute_time_sec": 116.932509, - "compute_times": { - "total": 116.947, - "clean_up": 0.01449, - "create_cpp": 0.52798, - "file_setup": 97.77902, - "compile_cpp": 8.05849, - "create_r1cs": 0.02969, - "save_results": 1.82312, - "get_r1cs_info": 0.00087, - "groth16_setup": 2.5213, - "export_verification_key": 2.47194, - "download_trusted_setup_file": 1.50222, - "solidity_contract_generation": 2.21788 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.378588S", + "compute_time_sec": 7.378588, + "compute_times": { + "total": 7.39004, + "clean_up": 0.01145, + "create_cpp": 0.09071, + "file_setup": 0.41562, + "compile_cpp": 3.1633, + "create_r1cs": 0.00655, + "save_results": 0.67372, + "get_r1cs_info": 0.0002, + "groth16_setup": 0.98235, + "export_verification_key": 1.03565, + "download_trusted_setup_file": 0.00076, + "solidity_contract_generation": 1.00972 }, - "file_size": 236749, - "queue_time": "P0DT00H00M30.976068S", - "queue_time_sec": 30.976068, + "file_size": 236740, + "queue_time": "P0DT00H00M10.373851S", + "queue_time_sec": 10.373851, "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -815,42 +891,42 @@ "num_public_inputs": 0 }, { - "circuit_id": "4d4cc670-ee3a-4738-b522-81107334f202", + "circuit_id": "d52e58e3-cde4-45ac-9b02-fec2fd20a9ef", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:52.258Z", + "date_created": "2024-08-21T23:35:15.865Z", "meta": {}, - "num_proofs": 0, + "num_proofs": 1, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-directory" + "from-tarball-for-all-circuit-proofs" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H01M58.973155S", - "compute_time_sec": 118.973155, - "compute_times": { - "total": 118.98578, - "clean_up": 0.01263, - "create_cpp": 0.4795, - "file_setup": 99.91266, - "compile_cpp": 8.12753, - "create_r1cs": 0.02391, - "save_results": 1.74646, - "get_r1cs_info": 0.00071, - "groth16_setup": 2.50129, - "export_verification_key": 2.51253, - "download_trusted_setup_file": 1.54761, - "solidity_contract_generation": 2.12095 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.059811S", + "compute_time_sec": 7.059811, + "compute_times": { + "total": 7.11215, + "clean_up": 0.05234, + "create_cpp": 0.14946, + "file_setup": 0.44039, + "compile_cpp": 3.23232, + "create_r1cs": 0.00975, + "save_results": 0.67822, + "get_r1cs_info": 0.00024, + "groth16_setup": 0.87184, + "export_verification_key": 0.80623, + "download_trusted_setup_file": 0.00095, + "solidity_contract_generation": 0.8704 }, - "file_size": 236749, - "queue_time": "P0DT00H00M35.053430S", - "queue_time_sec": 35.05343, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 236732, + "queue_time": "P0DT00H00M18.365633S", + "queue_time_sec": 18.365633, + "uploaded_file_name": "circom-multiplier2.tgz", "has_smart_contract_verifier": true, "has_verification_key": true, "verification_key": null, @@ -863,42 +939,42 @@ "num_public_inputs": 0 }, { - "circuit_id": "137532fa-f778-4a0f-a317-7017760256b6", + "circuit_id": "54d8deb7-6a78-4416-81a0-93888d1353db", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:52.257Z", + "date_created": "2024-08-21T23:35:15.848Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-browser-file-array" + "from-tarball-for-get-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M52.693765S", - "compute_time_sec": 52.693765, - "compute_times": { - "total": 52.70818, - "clean_up": 0.01441, - "create_cpp": 0.16283, - "file_setup": 42.27486, - "compile_cpp": 4.26531, - "create_r1cs": 0.01161, - "save_results": 1.62886, - "get_r1cs_info": 0.00046, - "groth16_setup": 0.92745, - "export_verification_key": 0.99228, - "download_trusted_setup_file": 1.51074, - "solidity_contract_generation": 0.91934 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.027974S", + "compute_time_sec": 7.027974, + "compute_times": { + "total": 7.04593, + "clean_up": 0.01796, + "create_cpp": 0.14965, + "file_setup": 0.49017, + "compile_cpp": 3.27036, + "create_r1cs": 0.00899, + "save_results": 0.67517, + "get_r1cs_info": 0.00044, + "groth16_setup": 0.80247, + "export_verification_key": 0.81299, + "download_trusted_setup_file": 0.00093, + "solidity_contract_generation": 0.8168 }, - "file_size": 236740, - "queue_time": "P0DT00H00M34.281548S", - "queue_time_sec": 34.281548, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 236732, + "queue_time": "P0DT00H00M10.136340S", + "queue_time_sec": 10.13634, + "uploaded_file_name": "circom-multiplier2.tgz", "has_smart_contract_verifier": true, "has_verification_key": true, "verification_key": null, @@ -911,41 +987,41 @@ "num_public_inputs": 0 }, { - "circuit_id": "e9a0163f-622b-4916-b025-cff64af1db89", + "circuit_id": "1ecaf789-ef4b-4ae4-9e31-50f6257caa76", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:52.256Z", + "date_created": "2024-08-21T23:35:15.816Z", "meta": {}, - "num_proofs": 0, + "num_proofs": 1, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-tarball" + "from-tarball-for-get-proof" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M46.075467S", - "compute_time_sec": 46.075467, - "compute_times": { - "total": 46.10441, - "clean_up": 0.02894, - "create_cpp": 0.10217, - "file_setup": 34.36306, - "compile_cpp": 3.95969, - "create_r1cs": 0.00944, - "save_results": 1.93607, - "get_r1cs_info": 0.00022, - "groth16_setup": 1.36543, - "export_verification_key": 1.33989, - "download_trusted_setup_file": 1.63304, - "solidity_contract_generation": 1.36647 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.218341S", + "compute_time_sec": 7.218341, + "compute_times": { + "total": 7.25889, + "clean_up": 0.04055, + "create_cpp": 0.15405, + "file_setup": 0.51765, + "compile_cpp": 3.33217, + "create_r1cs": 0.00831, + "save_results": 0.73074, + "get_r1cs_info": 0.0002, + "groth16_setup": 0.80283, + "export_verification_key": 0.85158, + "download_trusted_setup_file": 0.00086, + "solidity_contract_generation": 0.81995 }, "file_size": 236732, - "queue_time": "P0DT00H00M32.790775S", - "queue_time_sec": 32.790775, + "queue_time": "P0DT00H00M01.651410S", + "queue_time_sec": 1.65141, "uploaded_file_name": "circom-multiplier2.tgz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -959,41 +1035,41 @@ "num_public_inputs": 0 }, { - "circuit_id": "d35bc1e7-7171-4412-88f1-cf8beee7f72e", + "circuit_id": "8c72f13b-0b74-44c7-a2bc-054a03084523", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:52.255Z", + "date_created": "2024-08-21T23:35:15.808Z", "meta": {}, - "num_proofs": 1, + "num_proofs": 0, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-browser-file-array-for-get-all-circuit-proofs" + "from-directory" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H01M08.956182S", - "compute_time_sec": 68.956182, - "compute_times": { - "total": 68.9819, - "clean_up": 0.02572, - "create_cpp": 0.21324, - "file_setup": 55.55895, - "compile_cpp": 5.5701, - "create_r1cs": 0.01331, - "save_results": 1.55957, - "get_r1cs_info": 0.00045, - "groth16_setup": 1.52361, - "export_verification_key": 1.49097, - "download_trusted_setup_file": 1.51542, - "solidity_contract_generation": 1.51055 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.382512S", + "compute_time_sec": 7.382512, + "compute_times": { + "total": 7.40614, + "clean_up": 0.02363, + "create_cpp": 0.09245, + "file_setup": 0.42556, + "compile_cpp": 3.18524, + "create_r1cs": 0.00721, + "save_results": 0.68781, + "get_r1cs_info": 0.00024, + "groth16_setup": 0.99695, + "export_verification_key": 1.01071, + "download_trusted_setup_file": 0.00076, + "solidity_contract_generation": 0.97557 }, - "file_size": 236740, - "queue_time": "P0DT00H00M34.277949S", - "queue_time_sec": 34.277949, + "file_size": 236759, + "queue_time": "P0DT00H00M01.758763S", + "queue_time_sec": 1.758763, "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -1007,102 +1083,18363 @@ "num_public_inputs": 0 }, { - "circuit_id": "d43af0da-5e3f-409b-a104-2aa069adf7fd", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", + "circuit_id": "91473f0e-9933-4014-979e-7e2390f3ed3d", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:51.647Z", - "meta": {}, + "date_created": "2024-08-21T23:33:19.328Z", + "meta": { + "metaKey": "metaValue" + }, "num_proofs": 0, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-file-array" + "my-tag" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H01M08.590867S", - "compute_time_sec": 68.590867, - "compute_times": { - "total": 68.60212, - "clean_up": 0.01125, - "create_cpp": 0.2474, - "file_setup": 53.75751, - "compile_cpp": 6.6544, - "create_r1cs": 0.01409, - "save_results": 1.58545, - "get_r1cs_info": 0.0004, - "groth16_setup": 1.63287, - "export_verification_key": 1.62941, - "download_trusted_setup_file": 1.41288, - "solidity_contract_generation": 1.65647 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.584325S", + "compute_time_sec": 8.584325, + "compute_times": { + "total": 8.73798, + "clean_up": 0.15365, + "create_cpp": 0.09807, + "file_setup": 0.71154, + "compile_cpp": 3.23894, + "create_r1cs": 0.01581, + "save_results": 0.65075, + "get_r1cs_info": 0.00026, + "groth16_setup": 0.95126, + "export_verification_key": 0.97717, + "download_trusted_setup_file": 0.94485, + "solidity_contract_generation": 0.99566 }, - "file_size": 236740, - "queue_time": "P0DT00H00M28.947466S", - "queue_time_sec": 28.947466, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 1663161, + "queue_time": "P0DT00H00M01.724544S", + "queue_time_sec": 1.724544, + "uploaded_file_name": "circom-circuit.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, "verification_key": null, "warnings": null, "error": null, "curve": "bn254", - "num_constraints": 1, + "num_constraints": 2, "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 - } - ], - "rawHeaders": [ - "Content-Length", - "25764", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:03:49 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e6461727941697942627945513339314852696d530d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d6765742d70726f6f660d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727941697942627945513339314852696d530d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727941697942627945513339314852696d530d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727941697942627945513339314852696d532d2d0d0a", - "status": 201, - "response": { - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.763Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-browser-file-array-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "7da421c6-2713-4346-97d0-660919607fe2", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-08-13T18:29:15.571Z", + "meta": { + "host": "fermium", + "user": "evan", + "username": "sangaline", + "whatever": "some value", + "something-else": "another-value" + }, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.400787S", + "compute_time_sec": 1.400787, + "compute_times": { + "total": 1.45093, + "clean_up": 0.05014, + "file_setup": 0.31854, + "nargo_checks": 0.44164, + "save_results": 0.14974, + "solidity_contract_generation": 0.49087 + }, + "file_size": 4014, + "queue_time": "P0DT00H00M00.953266S", + "queue_time_sec": 0.953266, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "e7117407-569f-46b3-a49e-0f5dbd469060", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-08-13T18:28:52.155Z", + "meta": { + "host": "fermium", + "user": "evan", + "username": "sangaline", + "whatever": "some value" + }, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.782416S", + "compute_time_sec": 1.782416, + "compute_times": { + "total": 1.96914, + "clean_up": 0.18672, + "file_setup": 0.35642, + "nargo_checks": 0.50099, + "save_results": 0.35285, + "solidity_contract_generation": 0.57216 + }, + "file_size": 4014, + "queue_time": "P0DT00H00M01.261345S", + "queue_time_sec": 1.261345, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "295f296e-bbae-4467-937a-abcb51c00450", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-08-13T18:26:25.758Z", + "meta": { + "host": "fermium", + "user": "evan", + "username": "sangaline" + }, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.513600S", + "compute_time_sec": 1.5136, + "compute_times": { + "total": 1.55187, + "clean_up": 0.03827, + "file_setup": 0.30334, + "nargo_checks": 0.47886, + "save_results": 0.21069, + "solidity_contract_generation": 0.52071 + }, + "file_size": 4014, + "queue_time": "P0DT00H00M01.083507S", + "queue_time_sec": 1.083507, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "40f5f784-7f89-452f-931f-6e8f6b3a09d6", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:48.684Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.799958S", + "compute_time_sec": 6.799958, + "compute_times": { + "total": 6.81705, + "clean_up": 0.01709, + "create_cpp": 0.08746, + "file_setup": 0.23721, + "compile_cpp": 3.18392, + "create_r1cs": 0.00733, + "save_results": 0.36597, + "get_r1cs_info": 0.00025, + "groth16_setup": 0.99737, + "export_verification_key": 0.94417, + "download_trusted_setup_file": 0.00079, + "solidity_contract_generation": 0.97548 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M25.062594S", + "queue_time_sec": 25.062594, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "11cfd11d-fe70-423e-aa32-5f620cf972d0", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:48.639Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.095618S", + "compute_time_sec": 10.095618, + "compute_times": { + "total": 10.12361, + "clean_up": 0.02799, + "create_cpp": 0.1864, + "file_setup": 0.33376, + "compile_cpp": 4.95464, + "create_r1cs": 0.01214, + "save_results": 0.37405, + "get_r1cs_info": 0.00039, + "groth16_setup": 1.39507, + "export_verification_key": 1.41364, + "download_trusted_setup_file": 0.00127, + "solidity_contract_generation": 1.42426 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M26.405812S", + "queue_time_sec": 26.405812, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d47ade3b-70d4-4049-a6e8-53726653090e", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:48.636Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.685076S", + "compute_time_sec": 6.685076, + "compute_times": { + "total": 6.70481, + "clean_up": 0.01974, + "create_cpp": 0.10094, + "file_setup": 0.28324, + "compile_cpp": 3.1076, + "create_r1cs": 0.0073, + "save_results": 0.27857, + "get_r1cs_info": 0.00027, + "groth16_setup": 0.929, + "export_verification_key": 0.99756, + "download_trusted_setup_file": 0.00074, + "solidity_contract_generation": 0.97985 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M26.609308S", + "queue_time_sec": 26.609308, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "9cd231a9-a5cd-4a50-8320-8cd0162bdf0d", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:48.600Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "browser-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.541009S", + "compute_time_sec": 6.541009, + "compute_times": { + "total": 6.5843, + "clean_up": 0.04329, + "create_cpp": 0.1468, + "file_setup": 0.25857, + "compile_cpp": 3.31895, + "create_r1cs": 0.00913, + "save_results": 0.36187, + "get_r1cs_info": 0.00025, + "groth16_setup": 0.81427, + "export_verification_key": 0.81473, + "download_trusted_setup_file": 0.00083, + "solidity_contract_generation": 0.81561 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M27.537786S", + "queue_time_sec": 27.537786, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1f082c08-03fa-4126-816b-ccddefe9c852", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:48.535Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.476235S", + "compute_time_sec": 11.476235, + "compute_times": { + "total": 11.50009, + "clean_up": 0.02385, + "create_cpp": 0.23204, + "file_setup": 0.41135, + "compile_cpp": 6.16444, + "create_r1cs": 0.01427, + "save_results": 0.34245, + "get_r1cs_info": 0.00034, + "groth16_setup": 1.22686, + "export_verification_key": 1.20993, + "download_trusted_setup_file": 0.659, + "solidity_contract_generation": 1.21555 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M22.021184S", + "queue_time_sec": 22.021184, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ac61d835-05f5-4d67-96f7-c082f5833853", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:48.496Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.873591S", + "compute_time_sec": 9.873591, + "compute_times": { + "total": 9.89647, + "clean_up": 0.02288, + "create_cpp": 0.17659, + "file_setup": 0.35774, + "compile_cpp": 4.77295, + "create_r1cs": 0.01156, + "save_results": 0.42475, + "get_r1cs_info": 0.00043, + "groth16_setup": 1.41849, + "export_verification_key": 1.37705, + "download_trusted_setup_file": 0.00118, + "solidity_contract_generation": 1.33285 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M20.846903S", + "queue_time_sec": 20.846903, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "e80c9e43-8182-4ff9-bc8c-afaa8f0a0575", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:47.735Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.204718S", + "compute_time_sec": 7.204718, + "compute_times": { + "total": 7.22914, + "clean_up": 0.02443, + "create_cpp": 0.16717, + "file_setup": 0.29537, + "compile_cpp": 3.32816, + "create_r1cs": 0.01038, + "save_results": 0.30657, + "get_r1cs_info": 0.00022, + "groth16_setup": 0.82582, + "export_verification_key": 0.81222, + "download_trusted_setup_file": 0.64252, + "solidity_contract_generation": 0.81629 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M20.334752S", + "queue_time_sec": 20.334752, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f6689c00-e3e6-48a1-b51a-6619f0fa5979", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:46.960Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.534752S", + "compute_time_sec": 10.534752, + "compute_times": { + "total": 10.5595, + "clean_up": 0.02475, + "create_cpp": 0.16715, + "file_setup": 0.36699, + "compile_cpp": 5.25643, + "create_r1cs": 0.01763, + "save_results": 0.44305, + "get_r1cs_info": 0.00038, + "groth16_setup": 1.20904, + "export_verification_key": 1.21414, + "download_trusted_setup_file": 0.65826, + "solidity_contract_generation": 1.20168 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M20.460093S", + "queue_time_sec": 20.460093, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "3b0cce88-6408-4b4f-9801-8619f869b02e", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:46.908Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.391881S", + "compute_time_sec": 7.391881, + "compute_times": { + "total": 7.40364, + "clean_up": 0.01176, + "create_cpp": 0.09922, + "file_setup": 0.25722, + "compile_cpp": 3.11284, + "create_r1cs": 0.00787, + "save_results": 0.25749, + "get_r1cs_info": 0.00019, + "groth16_setup": 1.06558, + "export_verification_key": 0.99433, + "download_trusted_setup_file": 0.65038, + "solidity_contract_generation": 0.94677 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M20.043664S", + "queue_time_sec": 20.043664, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "75c50fa6-a8a8-4ad6-a87b-89ca3cce2c2e", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:46.902Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.045257S", + "compute_time_sec": 10.045257, + "compute_times": { + "total": 10.09846, + "clean_up": 0.0532, + "create_cpp": 0.17584, + "file_setup": 0.32888, + "compile_cpp": 4.91222, + "create_r1cs": 0.01278, + "save_results": 0.39128, + "get_r1cs_info": 0.00034, + "groth16_setup": 1.43044, + "export_verification_key": 1.42607, + "download_trusted_setup_file": 0.00118, + "solidity_contract_generation": 1.36623 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M12.996745S", + "queue_time_sec": 12.996745, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "7f84f888-dd5a-4afe-ba10-08aadfaef5a9", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:46.860Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.748466S", + "compute_time_sec": 9.748466, + "compute_times": { + "total": 9.76073, + "clean_up": 0.01227, + "create_cpp": 0.17175, + "file_setup": 0.34904, + "compile_cpp": 4.72895, + "create_r1cs": 0.01141, + "save_results": 0.36485, + "get_r1cs_info": 0.00036, + "groth16_setup": 1.37514, + "export_verification_key": 1.36383, + "download_trusted_setup_file": 0.00115, + "solidity_contract_generation": 1.38201 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M11.716344S", + "queue_time_sec": 11.716344, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "2660e301-8cb4-40ce-8c75-cd79ff90450f", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:46.822Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.520673S", + "compute_time_sec": 7.520673, + "compute_times": { + "total": 7.53326, + "clean_up": 0.01259, + "create_cpp": 0.08492, + "file_setup": 0.28797, + "compile_cpp": 3.15922, + "create_r1cs": 0.0081, + "save_results": 0.33451, + "get_r1cs_info": 0.00025, + "groth16_setup": 0.94378, + "export_verification_key": 1.00022, + "download_trusted_setup_file": 0.7057, + "solidity_contract_generation": 0.996 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M18.554877S", + "queue_time_sec": 18.554877, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "b3da5fbc-97a8-4a94-94c0-a291dee05bd9", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:46.790Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "sdk-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.409250S", + "compute_time_sec": 10.40925, + "compute_times": { + "total": 10.42244, + "clean_up": 0.01319, + "create_cpp": 0.18344, + "file_setup": 0.31535, + "compile_cpp": 5.08536, + "create_r1cs": 0.01289, + "save_results": 0.59526, + "get_r1cs_info": 0.00036, + "groth16_setup": 1.42832, + "export_verification_key": 1.41436, + "download_trusted_setup_file": 0.00135, + "solidity_contract_generation": 1.37255 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M01.027330S", + "queue_time_sec": 1.02733, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0cbbcbe1-d47d-418b-a41c-71e892d08270", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:46.726Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.846583S", + "compute_time_sec": 9.846583, + "compute_times": { + "total": 9.86128, + "clean_up": 0.0147, + "create_cpp": 0.17333, + "file_setup": 0.29503, + "compile_cpp": 4.85669, + "create_r1cs": 0.01042, + "save_results": 0.38661, + "get_r1cs_info": 0.00039, + "groth16_setup": 1.3717, + "export_verification_key": 1.38671, + "download_trusted_setup_file": 0.00143, + "solidity_contract_generation": 1.36427 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M00.957640S", + "queue_time_sec": 0.95764, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1088a9e7-2de1-4be5-b5f2-344d443f2cc0", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-08-12T23:04:35.380Z", + "meta": { + "tester": "yes" + }, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.678228S", + "compute_time_sec": 1.678228, + "compute_times": { + "total": 1.90554, + "clean_up": 0.22731, + "file_setup": 0.32047, + "nargo_checks": 0.53508, + "save_results": 0.22979, + "solidity_contract_generation": 0.59288 + }, + "file_size": 4006, + "queue_time": "P0DT00H00M01.076010S", + "queue_time_sec": 1.07601, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "fa7b501f-a6c7-4d69-935a-62be32ae4bec", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:21.855Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.348246S", + "compute_time_sec": 7.348246, + "compute_times": { + "total": 7.38924, + "clean_up": 0.04099, + "create_cpp": 0.09991, + "file_setup": 0.25757, + "compile_cpp": 3.06589, + "create_r1cs": 0.00794, + "save_results": 0.31376, + "get_r1cs_info": 0.00021, + "groth16_setup": 0.88828, + "export_verification_key": 0.9719, + "download_trusted_setup_file": 0.77651, + "solidity_contract_generation": 0.96627 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M32.602444S", + "queue_time_sec": 32.602444, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0737b469-040e-4324-af98-52ce526735bb", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:21.804Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "browser-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.929735S", + "compute_time_sec": 9.929735, + "compute_times": { + "total": 10.00048, + "clean_up": 0.07074, + "create_cpp": 0.16425, + "file_setup": 0.32554, + "compile_cpp": 5.28759, + "create_r1cs": 0.01569, + "save_results": 0.49122, + "get_r1cs_info": 0.0004, + "groth16_setup": 1.21661, + "export_verification_key": 1.20653, + "download_trusted_setup_file": 0.0012, + "solidity_contract_generation": 1.2207 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M31.815423S", + "queue_time_sec": 31.815423, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "bb10a68e-b516-40fb-b758-a9ff53bd72c1", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:21.796Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M26.950303S", + "compute_time_sec": 26.950303, + "compute_times": { + "total": 26.98597, + "clean_up": 0.03567, + "create_cpp": 0.10419, + "file_setup": 19.59736, + "compile_cpp": 3.13176, + "create_r1cs": 0.00721, + "save_results": 0.41821, + "get_r1cs_info": 0.00021, + "groth16_setup": 0.97674, + "export_verification_key": 0.99098, + "download_trusted_setup_file": 0.71627, + "solidity_contract_generation": 1.00738 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M31.575520S", + "queue_time_sec": 31.57552, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6b24a1b5-9886-42d7-ab06-86ea01823031", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:21.736Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.494367S", + "compute_time_sec": 11.494367, + "compute_times": { + "total": 11.52502, + "clean_up": 0.03065, + "create_cpp": 0.23717, + "file_setup": 0.40769, + "compile_cpp": 6.09275, + "create_r1cs": 0.01367, + "save_results": 0.43682, + "get_r1cs_info": 0.00038, + "groth16_setup": 1.22413, + "export_verification_key": 1.21219, + "download_trusted_setup_file": 0.66197, + "solidity_contract_generation": 1.2076 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M31.656854S", + "queue_time_sec": 31.656854, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "83befe4e-f790-4371-90de-7bf7f257a697", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:21.674Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M26.688754S", + "compute_time_sec": 26.688754, + "compute_times": { + "total": 26.71158, + "clean_up": 0.02282, + "create_cpp": 0.10782, + "file_setup": 19.59149, + "compile_cpp": 3.16112, + "create_r1cs": 0.00714, + "save_results": 0.29255, + "get_r1cs_info": 0.00025, + "groth16_setup": 0.90525, + "export_verification_key": 0.9527, + "download_trusted_setup_file": 0.72133, + "solidity_contract_generation": 0.9491 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M31.456998S", + "queue_time_sec": 31.456998, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1f4e1c1e-d6bc-4272-a3a3-70ebbbc68b85", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:21.656Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.416485S", + "compute_time_sec": 8.416485, + "compute_times": { + "total": 8.47632, + "clean_up": 0.05984, + "create_cpp": 0.16922, + "file_setup": 0.34058, + "compile_cpp": 4.15395, + "create_r1cs": 0.01103, + "save_results": 0.38936, + "get_r1cs_info": 0.0003, + "groth16_setup": 1.11222, + "export_verification_key": 1.12447, + "download_trusted_setup_file": 0.00111, + "solidity_contract_generation": 1.11425 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M32.407359S", + "queue_time_sec": 32.407359, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "2e3171fd-37d4-46b4-bcca-2b6f6e9e8fd6", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:20.163Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.041897S", + "compute_time_sec": 11.041897, + "compute_times": { + "total": 11.07424, + "clean_up": 0.03235, + "create_cpp": 0.16545, + "file_setup": 0.4492, + "compile_cpp": 5.65447, + "create_r1cs": 0.01316, + "save_results": 0.37601, + "get_r1cs_info": 0.00034, + "groth16_setup": 1.2197, + "export_verification_key": 1.23035, + "download_trusted_setup_file": 0.67878, + "solidity_contract_generation": 1.25443 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M32.525724S", + "queue_time_sec": 32.525724, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "7c0e874c-79c5-40a5-ba2e-51e6df5950b8", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:20.111Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.401747S", + "compute_time_sec": 8.401747, + "compute_times": { + "total": 8.41603, + "clean_up": 0.01428, + "create_cpp": 0.16018, + "file_setup": 0.33897, + "compile_cpp": 4.16407, + "create_r1cs": 0.01151, + "save_results": 0.36512, + "get_r1cs_info": 0.0003, + "groth16_setup": 1.12939, + "export_verification_key": 1.12994, + "download_trusted_setup_file": 0.00106, + "solidity_contract_generation": 1.1012 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M23.252076S", + "queue_time_sec": 23.252076, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ca487e77-4347-4c46-b29b-9672d2395082", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:20.085Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M49.258681S", + "compute_time_sec": 49.258681, + "compute_times": { + "total": 49.29152, + "clean_up": 0.03284, + "create_cpp": 0.15746, + "file_setup": 39.04559, + "compile_cpp": 5.27438, + "create_r1cs": 0.01734, + "save_results": 0.47914, + "get_r1cs_info": 0.00037, + "groth16_setup": 1.23483, + "export_verification_key": 1.19529, + "download_trusted_setup_file": 0.65578, + "solidity_contract_generation": 1.19851 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M31.041833S", + "queue_time_sec": 31.041833, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0715a166-9ef2-47cb-ad78-dee0627724b4", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:20.011Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "sdk-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.962090S", + "compute_time_sec": 9.96209, + "compute_times": { + "total": 10.00685, + "clean_up": 0.04476, + "create_cpp": 0.14995, + "file_setup": 0.33854, + "compile_cpp": 5.2948, + "create_r1cs": 0.02118, + "save_results": 0.4543, + "get_r1cs_info": 0.00046, + "groth16_setup": 1.23673, + "export_verification_key": 1.25723, + "download_trusted_setup_file": 0.00155, + "solidity_contract_generation": 1.20735 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M11.823976S", + "queue_time_sec": 11.823976, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5071acda-9351-4875-aa74-13b3473cc620", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:19.976Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.703009S", + "compute_time_sec": 9.703009, + "compute_times": { + "total": 9.74051, + "clean_up": 0.0375, + "create_cpp": 0.14344, + "file_setup": 0.32795, + "compile_cpp": 5.21843, + "create_r1cs": 0.01586, + "save_results": 0.41181, + "get_r1cs_info": 0.00038, + "groth16_setup": 1.20605, + "export_verification_key": 1.19687, + "download_trusted_setup_file": 0.00116, + "solidity_contract_generation": 1.18105 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M22.904148S", + "queue_time_sec": 22.904148, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c2ccca9a-2d64-461c-af3d-0d6db91d1467", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:19.958Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.387997S", + "compute_time_sec": 8.387997, + "compute_times": { + "total": 8.43474, + "clean_up": 0.04674, + "create_cpp": 0.16972, + "file_setup": 0.33613, + "compile_cpp": 4.18267, + "create_r1cs": 0.01208, + "save_results": 0.33333, + "get_r1cs_info": 0.00045, + "groth16_setup": 1.11167, + "export_verification_key": 1.12919, + "download_trusted_setup_file": 0.00109, + "solidity_contract_generation": 1.11167 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M13.993727S", + "queue_time_sec": 13.993727, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "b78c6857-025d-4d4f-8e1e-6eda36fd2442", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:19.888Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.870893S", + "compute_time_sec": 9.870893, + "compute_times": { + "total": 9.88869, + "clean_up": 0.0178, + "create_cpp": 0.14659, + "file_setup": 0.32921, + "compile_cpp": 5.29849, + "create_r1cs": 0.02083, + "save_results": 0.4783, + "get_r1cs_info": 0.00045, + "groth16_setup": 1.1945, + "export_verification_key": 1.21668, + "download_trusted_setup_file": 0.00194, + "solidity_contract_generation": 1.18389 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M01.021830S", + "queue_time_sec": 1.02183, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5e743104-119a-4306-bdd6-c3c315e1aee0", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:19.870Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.417482S", + "compute_time_sec": 8.417482, + "compute_times": { + "total": 8.45526, + "clean_up": 0.03778, + "create_cpp": 0.16059, + "file_setup": 0.31916, + "compile_cpp": 4.25222, + "create_r1cs": 0.01103, + "save_results": 0.3367, + "get_r1cs_info": 0.00028, + "groth16_setup": 1.11481, + "export_verification_key": 1.11751, + "download_trusted_setup_file": 0.00125, + "solidity_contract_generation": 1.10392 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.926162S", + "queue_time_sec": 0.926162, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "738f2fc6-60ee-466e-905c-0623ebd5cf8c", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-08-09T13:01:18.136Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.615437S", + "compute_time_sec": 1.615437, + "compute_times": { + "total": 1.82532, + "clean_up": 0.20988, + "file_setup": 0.35671, + "nargo_checks": 0.49545, + "save_results": 0.21573, + "solidity_contract_generation": 0.54754 + }, + "file_size": 4063, + "queue_time": "P0DT00H00M01.144743S", + "queue_time_sec": 1.144743, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "3854e241-e7ee-4156-a96a-a52640d0f450", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-08-02T11:12:34.252Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M04.664465S", + "compute_time_sec": 4.664465, + "compute_times": { + "total": 11.64026, + "clean_up": 6.9758, + "file_setup": 1.6147, + "create_r1cs": 0.01748, + "create_wasm": 0.02918, + "save_results": 0.35582, + "get_r1cs_info": 0.00024, + "groth16_setup": 0.87166, + "export_verification_key": 0.91598, + "download_trusted_setup_file": 0.00103, + "solidity_contract_generation": 0.85837 + }, + "file_size": 7010277, + "queue_time": "P0DT00H00M01.646554S", + "queue_time_sec": 1.646554, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "5fa162bf-91f3-414a-a463-21e17f2ac1ed", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-08-02T10:53:45.293Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M04.697351S", + "compute_time_sec": 4.697351, + "compute_times": { + "total": 10.9162, + "clean_up": 6.21885, + "file_setup": 1.60703, + "create_r1cs": 0.01845, + "create_wasm": 0.02689, + "save_results": 0.43377, + "get_r1cs_info": 0.00033, + "groth16_setup": 0.86629, + "export_verification_key": 0.86547, + "download_trusted_setup_file": 0.00105, + "solidity_contract_generation": 0.87808 + }, + "file_size": 7010277, + "queue_time": "P0DT00H00M01.651321S", + "queue_time_sec": 1.651321, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "cb5c62df-341f-43cd-b91a-6a6e18276e82", + "circuit_name": "merkle_tree_26", + "project_name": "merkle_tree_26", + "circuit_type": "noir", + "date_created": "2024-07-31T13:01:29.238Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.031891S", + "compute_time_sec": 6.031891, + "compute_times": { + "total": 6.04333, + "clean_up": 0.01144, + "file_setup": 0.32749, + "nargo_checks": 1.44967, + "save_results": 0.37178, + "solidity_contract_generation": 3.88295 + }, + "file_size": 1291, + "queue_time": "P0DT00H00M01.627932S", + "queue_time_sec": 1.627932, + "uploaded_file_name": "merkle_tree_26.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1988, + "circuit_size": 29032, + "curve": "bn254", + "nargo_package_name": "merkleTree", + "noir_version": "0.26.0" + }, + { + "circuit_id": "cbd98e10-431d-4b56-8801-7abd24522afe", + "circuit_name": "gnark-circuit", + "project_name": "gnark-circuit", + "circuit_type": "gnark", + "date_created": "2024-07-19T11:01:27.061Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M19.337811S", + "compute_time_sec": 19.337811, + "compute_times": { + "total": 22.4641, + "compile": 16.48168, + "clean_up": 3.12629, + "file_setup": 2.26151, + "save_results": 0.5514, + "compile_r1cs_and_keygen": 0.02526, + "solidity_contract_generation": 0.01796 + }, + "file_size": 19646240, + "queue_time": "P0DT00H00M01.469956S", + "queue_time_sec": 1.469956, + "uploaded_file_name": "gnark-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.10.0" + }, + { + "circuit_id": "b8a24762-6b4c-4903-9ad5-fecf7fb0b474", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-07-19T10:20:57.174Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.752308S", + "compute_time_sec": 1.752308, + "compute_times": { + "total": 1.84963, + "clean_up": 0.09732, + "file_setup": 0.32592, + "nargo_checks": 0.58956, + "save_results": 0.2406, + "solidity_contract_generation": 0.59624 + }, + "file_size": 2283, + "queue_time": "P0DT00H00M01.447588S", + "queue_time_sec": 1.447588, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "521c7dd5-e969-4fbe-a508-aeb1addc307b", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-07-19T10:13:01.241Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M04.518297S", + "compute_time_sec": 4.518297, + "compute_times": { + "total": 4.60812, + "clean_up": 0.08982, + "file_setup": 0.37999, + "create_r1cs": 0.03238, + "create_wasm": 0.04552, + "save_results": 0.4626, + "get_r1cs_info": 0.00045, + "groth16_setup": 1.20741, + "export_verification_key": 1.22526, + "download_trusted_setup_file": 0.00138, + "solidity_contract_generation": 1.16333 + }, + "file_size": 1480629, + "queue_time": "P0DT00H00M01.471078S", + "queue_time_sec": 1.471078, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "a71b3535-f27d-4863-a3d8-cd7346a6dcca", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-07-19T10:08:35.335Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M05.168259S", + "compute_time_sec": 5.168259, + "compute_times": { + "total": 5.47811, + "clean_up": 0.30985, + "file_setup": 0.36323, + "create_r1cs": 0.03021, + "create_wasm": 0.04972, + "save_results": 0.49722, + "get_r1cs_info": 0.00058, + "groth16_setup": 1.42192, + "export_verification_key": 1.42946, + "download_trusted_setup_file": 0.00224, + "solidity_contract_generation": 1.37368 + }, + "file_size": 1480629, + "queue_time": "P0DT00H00M01.434949S", + "queue_time_sec": 1.434949, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "282ffebb-0941-49fb-a611-00e17e5b4566", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-07-19T10:07:58.103Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M04.503026S", + "compute_time_sec": 4.503026, + "compute_times": { + "total": 4.65882, + "clean_up": 0.15579, + "file_setup": 0.35785, + "create_r1cs": 0.02864, + "create_wasm": 0.04352, + "save_results": 0.45469, + "get_r1cs_info": 0.00058, + "groth16_setup": 1.22033, + "export_verification_key": 1.19586, + "download_trusted_setup_file": 0.00229, + "solidity_contract_generation": 1.19925 + }, + "file_size": 1480629, + "queue_time": "P0DT00H00M01.498602S", + "queue_time_sec": 1.498602, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "231e759b-3593-4e4e-99db-d3e1f84ed5f9", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-07-19T10:06:48.839Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M05.055862S", + "compute_time_sec": 5.055862, + "compute_times": { + "total": 5.28476, + "clean_up": 0.2289, + "file_setup": 0.36681, + "create_r1cs": 0.02837, + "create_wasm": 0.04199, + "save_results": 0.46763, + "get_r1cs_info": 0.00058, + "groth16_setup": 1.37023, + "export_verification_key": 1.38528, + "download_trusted_setup_file": 0.00233, + "solidity_contract_generation": 1.39265 + }, + "file_size": 1480629, + "queue_time": "P0DT00H00M01.459166S", + "queue_time_sec": 1.459166, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "c6dd7074-3e45-49b3-80b7-f6c359b48f07", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-06-17T22:42:53.060Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.977024S", + "compute_time_sec": 6.977024, + "compute_times": { + "total": 7.03644, + "clean_up": 0.05942, + "create_cpp": 0.08667, + "file_setup": 0.31258, + "compile_cpp": 3.23275, + "create_r1cs": 0.0148, + "save_results": 0.29344, + "get_r1cs_info": 0.00022, + "groth16_setup": 1.00972, + "export_verification_key": 1.03524, + "download_trusted_setup_file": 0.00081, + "solidity_contract_generation": 0.9908 + }, + "file_size": 1663286, + "queue_time": "P0DT00H00M01.733692S", + "queue_time_sec": 1.733692, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "278eb81b-6040-4765-b5e1-284ea9e5fff8", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-06-17T22:35:31.810Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.224465S", + "compute_time_sec": 7.224465, + "compute_times": { + "total": 7.33047, + "clean_up": 0.106, + "create_cpp": 0.09868, + "file_setup": 0.32158, + "compile_cpp": 3.38729, + "create_r1cs": 0.01504, + "save_results": 0.34443, + "get_r1cs_info": 0.0003, + "groth16_setup": 0.96342, + "export_verification_key": 1.04933, + "download_trusted_setup_file": 0.00098, + "solidity_contract_generation": 1.04343 + }, + "file_size": 1663286, + "queue_time": "P0DT00H00M01.573552S", + "queue_time_sec": 1.573552, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "8f389feb-06c3-4871-bbc1-c18f5be26724", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-06-17T20:19:15.425Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.992392S", + "compute_time_sec": 6.992392, + "compute_times": { + "total": 7.13204, + "clean_up": 0.13965, + "create_cpp": 0.08715, + "file_setup": 0.32133, + "compile_cpp": 3.2835, + "create_r1cs": 0.01515, + "save_results": 0.32241, + "get_r1cs_info": 0.00024, + "groth16_setup": 1.00621, + "export_verification_key": 0.98384, + "download_trusted_setup_file": 0.00092, + "solidity_contract_generation": 0.97164 + }, + "file_size": 1663286, + "queue_time": "P0DT00H00M01.699624S", + "queue_time_sec": 1.699624, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "d7faf575-f2ed-495f-bb75-b79e4c02fcce", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-06-13T13:07:37.979Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.373573S", + "compute_time_sec": 1.373573, + "compute_times": { + "total": 1.41537, + "clean_up": 0.0418, + "file_setup": 0.25079, + "nargo_checks": 0.35975, + "save_results": 0.37347, + "solidity_contract_generation": 0.38957 + }, + "file_size": 1663, + "queue_time": "P0DT00H00M05.057593S", + "queue_time_sec": 5.057593, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "b54283e7-667a-469a-bd51-6584c6d60f0a", + "circuit_name": "gnark-circuit", + "project_name": "gnark-circuit", + "circuit_type": "gnark", + "date_created": "2024-06-13T13:07:34.304Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.852478S", + "compute_time_sec": 10.852478, + "compute_times": { + "total": 12.56904, + "compile": 7.95976, + "clean_up": 1.71656, + "file_setup": 2.49853, + "save_results": 0.37433, + "compile_r1cs_and_keygen": 0.01102, + "solidity_contract_generation": 0.00883 + }, + "file_size": 19616436, + "queue_time": "P0DT00H00M02.872982S", + "queue_time_sec": 2.872982, + "uploaded_file_name": "gnark-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.10.0" + }, + { + "circuit_id": "5eb11dc4-ed4d-4143-af9b-06a54fccc34d", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-06-13T13:07:27.726Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.958765S", + "compute_time_sec": 6.958765, + "compute_times": { + "total": 6.99971, + "clean_up": 0.04095, + "create_cpp": 0.09151, + "file_setup": 0.30116, + "compile_cpp": 3.23925, + "create_r1cs": 0.01539, + "save_results": 0.34331, + "get_r1cs_info": 0.00023, + "groth16_setup": 1.0237, + "export_verification_key": 0.97533, + "download_trusted_setup_file": 0.00092, + "solidity_contract_generation": 0.96796 + }, + "file_size": 1663212, + "queue_time": "P0DT00H00M01.597573S", + "queue_time_sec": 1.597573, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "47742ceb-2d16-4589-85a7-4ff7d4e29142", + "circuit_name": "axiom", + "project_name": "axiom", + "circuit_type": "halo2", + "date_created": "2024-06-13T13:07:18.315Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "shplonk", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M20.700250S", + "compute_time_sec": 20.70025, + "compute_times": { + "total": 22.18049, + "compile": 19.48207, + "clean_up": 1.48024, + "file_setup": 0.35545, + "save_results": 0.57822, + "generate_keys": 0.28441, + "download_trusted_setup_file": 0.00011 + }, + "file_size": 44949300, + "queue_time": "P0DT00H00M01.663237S", + "queue_time_sec": 1.663237, + "uploaded_file_name": "axiom.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "class_name": "axiom::circuit_def::CircuitInput", + "curve": "bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" + }, + { + "circuit_id": "e55dbd95-120c-4995-9923-24625a7723cd", + "circuit_name": "pse", + "project_name": "pse", + "circuit_type": "halo2", + "date_created": "2024-06-13T13:06:48.984Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "shplonk", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M34.060405S", + "compute_time_sec": 34.060405, + "compute_times": { + "total": 36.90269, + "compile": 15.68371, + "clean_up": 2.84229, + "file_setup": 0.28603, + "save_results": 0.53678, + "generate_keys": 2.89852, + "precompilation_checks": 14.65526, + "download_trusted_setup_file": 0.00011 + }, + "file_size": 36273032, + "queue_time": "P0DT00H00M01.908869S", + "queue_time_sec": 1.908869, + "uploaded_file_name": "pse.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "class_name": "pse::circuit::EqualCircuit", + "curve": "bn254", + "degree": 13, + "halo2_version": "pse-v0.3.0" + }, + { + "circuit_id": "227716dc-3f87-43a2-b916-f1e462efcec6", + "circuit_name": "zk-passport", + "project_name": "zk-passport", + "circuit_type": "circom", + "date_created": "2024-06-12T13:27:35.158Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.470085S", + "compute_time_sec": 2.470085, + "compute_times": { + "total": 8.32465, + "clean_up": 5.85456, + "create_cpp": 0.00668, + "file_setup": 2.4634 + }, + "file_size": 110859257, + "queue_time": "P0DT00H00M07.108247S", + "queue_time_sec": 7.108247, + "uploaded_file_name": "zk-passport.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: /opt/sindri/share/circom-v2.1.8/circom.bin -l /forge/data/pods/zk-workers-compile-c8bfd8548-wxjvz/circuits/227716dc-3f87-43a2-b916-f1e462efcec6_1718198862266328/code -l /forge/data/pods/zk-workers-compile-c8bfd8548-wxjvz/circuits/227716dc-3f87-43a2-b916-f1e462efcec6_1718198862266328/code/node_modules --output /forge/data/pods/zk-workers-compile-c8bfd8548-wxjvz/circuits/227716dc-3f87-43a2-b916-f1e462efcec6_1718198862266328 --c /forge/data/pods/zk-workers-compile-c8bfd8548-wxjvz/circuits/227716dc-3f87-43a2-b916-f1e462efcec6_1718198862266328/code/./circuits/disclose.circom stdout: stderr: error[P1014]: The file binary-merkle-root.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "dd0a7009-a212-40a8-bb98-2e559d2e1ef3", + "circuit_name": "zk-passport", + "project_name": "zk-passport", + "circuit_type": "circom", + "date_created": "2024-06-12T02:56:58.894Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.439233S", + "compute_time_sec": 2.439233, + "compute_times": { + "total": 9.3845, + "clean_up": 6.94526, + "create_cpp": 0.00835, + "file_setup": 2.43088 + }, + "file_size": 110858052, + "queue_time": "P0DT00H00M07.252323S", + "queue_time_sec": 7.252323, + "uploaded_file_name": "zk-passport.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: /opt/sindri/share/circom-v2.1.8/circom.bin -l /forge/data/pods/zk-workers-compile-c8bfd8548-cdxc5/circuits/dd0a7009-a212-40a8-bb98-2e559d2e1ef3_1718161026146783/code -l /forge/data/pods/zk-workers-compile-c8bfd8548-cdxc5/circuits/dd0a7009-a212-40a8-bb98-2e559d2e1ef3_1718161026146783/code/node_modules --output /forge/data/pods/zk-workers-compile-c8bfd8548-cdxc5/circuits/dd0a7009-a212-40a8-bb98-2e559d2e1ef3_1718161026146783 --c /forge/data/pods/zk-workers-compile-c8bfd8548-cdxc5/circuits/dd0a7009-a212-40a8-bb98-2e559d2e1ef3_1718161026146783/code/./circuits/disclose.circom stdout: stderr: error[P1014]: The file poseidon.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "68259281-a540-4cc9-bb09-8da9da4a1bbe", + "circuit_name": "zk-passport", + "project_name": "zk-passport", + "circuit_type": "circom", + "date_created": "2024-06-12T02:54:19.111Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.519688S", + "compute_time_sec": 2.519688, + "compute_times": { + "total": 9.012, + "clean_up": 6.49231, + "create_cpp": 0.00771, + "file_setup": 2.51198 + }, + "file_size": 110856981, + "queue_time": "P0DT00H00M07.764792S", + "queue_time_sec": 7.764792, + "uploaded_file_name": "zk-passport.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: /opt/sindri/share/circom-v2.1.8/circom.bin -l /forge/data/pods/zk-workers-compile-c8bfd8548-wxjvz/circuits/68259281-a540-4cc9-bb09-8da9da4a1bbe_1718160866876246/code -l /forge/data/pods/zk-workers-compile-c8bfd8548-wxjvz/circuits/68259281-a540-4cc9-bb09-8da9da4a1bbe_1718160866876246/code/node_modules --output /forge/data/pods/zk-workers-compile-c8bfd8548-wxjvz/circuits/68259281-a540-4cc9-bb09-8da9da4a1bbe_1718160866876246 --c /forge/data/pods/zk-workers-compile-c8bfd8548-wxjvz/circuits/68259281-a540-4cc9-bb09-8da9da4a1bbe_1718160866876246/code/./circuits/disclose.circom stdout: stderr: error[P1014]: The file binary-merkle-root.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "ffb02200-d072-4270-96fb-02301b28acf9", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-05-29T20:00:24.210Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M12.142088S", + "compute_time_sec": 12.142088, + "compute_times": { + "total": 12.14209, + "clean_up": 0.07621, + "create_cpp": 0.22902, + "file_setup": 0.4798, + "compile_cpp": 4.84601, + "create_r1cs": 0.03965, + "save_results": 0.39604, + "get_r1cs_info": 0.00069, + "groth16_setup": 1.85973, + "export_verification_key": 1.81522, + "download_trusted_setup_file": 0.58896, + "solidity_contract_generation": 1.81076 + }, + "file_size": 1663143, + "queue_time": "P0DT00H00M00.936260S", + "queue_time_sec": 0.93626, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "39f098fc-77cf-4985-b9e7-718fcae78284", + "circuit_name": "gnark-circuit", + "project_name": "gnark-circuit", + "circuit_type": "gnark", + "date_created": "2024-05-29T20:00:20.799Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H01M04.211279S", + "compute_time_sec": 64.211279, + "compute_times": { + "total": 64.21128, + "clean_up": 62.42694, + "file_setup": 1.78433 + }, + "file_size": 4800, + "queue_time": "P0DT00H00M00.854970S", + "queue_time_sec": 0.85497, + "uploaded_file_name": "gnark-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go mod tidy stdout: stderr: go: github.com/sindri-labs/gnark-scaffold/example@v0.0.0-00010101000000-000000000000 requires\n\tgithub.com/consensys/gnark@v0.9.0: Get \"https://proxy.golang.org/github.com/consensys/gnark/@v/v0.9.0.mod\": dial tcp 142.250.80.49:443: i/o timeout\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "d18ae6f4-3616-4503-8c06-adff5548c801", + "circuit_name": "sindri-semaphore-mtb", + "project_name": "sindri-semaphore-mtb", + "circuit_type": "gnark", + "date_created": "2024-05-08T19:12:38.637Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.270310S", + "compute_time_sec": 2.27031, + "compute_times": { + "total": 2.27031, + "clean_up": 1.39493, + "file_setup": 0.87538 + }, + "file_size": 112861, + "queue_time": "P0DT00H00M01.321801S", + "queue_time_sec": 1.321801, + "uploaded_file_name": "sindri-semaphore-mtb.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: prover.go:20:2: import \"github.com/sindri-labs/gnark-scaffold/example\" is a program, not an importable package\n", + "curve": "bn254", + "gnark_version": "v0.8.1" + }, + { + "circuit_id": "1f5b4d3a-7527-4a52-9da7-7670996251ae", + "circuit_name": "sindri-semaphore-mtb", + "project_name": "sindri-semaphore-mtb", + "circuit_type": "gnark", + "date_created": "2024-05-08T19:11:25.692Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.061680S", + "compute_time_sec": 9.06168, + "compute_times": { + "total": 9.06168, + "clean_up": 7.20553, + "file_setup": 1.85615 + }, + "file_size": 113688, + "queue_time": "P0DT00H00M01.271071S", + "queue_time_sec": 1.271071, + "uploaded_file_name": "sindri-semaphore-mtb.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: prover.go:20:2: import \"github.com/sindri-labs/gnark-scaffold/example\" is a program, not an importable package\n", + "curve": "bn254", + "gnark_version": "v0.8.1" + }, + { + "circuit_id": "e2ab4084-7edb-4164-b482-9dc7147fc790", + "circuit_name": "sindri-semaphore-mtb", + "project_name": "sindri-semaphore-mtb", + "circuit_type": "gnark", + "date_created": "2024-05-08T19:10:39.980Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M04.106391S", + "compute_time_sec": 4.106391, + "compute_times": { + "total": 4.10639, + "clean_up": 1.43576, + "file_setup": 2.67063 + }, + "file_size": 115608, + "queue_time": "P0DT00H00M01.444373S", + "queue_time_sec": 1.444373, + "uploaded_file_name": "sindri-semaphore-mtb.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: circuit/main.go:10:2: package worldcoin/gnark-mbu/logging is not in std (/usr/local/go/src/worldcoin/gnark-mbu/logging)\ncircuit/main.go:11:2: package worldcoin/gnark-mbu/prover is not in std (/usr/local/go/src/worldcoin/gnark-mbu/prover)\ncircuit/main.go:12:2: package worldcoin/gnark-mbu/server is not in std (/usr/local/go/src/worldcoin/gnark-mbu/server)\nprover.go:20:2: import \"github.com/sindri-labs/gnark-scaffold/example\" is a program, not an importable package\n", + "curve": "bn254", + "gnark_version": "v0.8.1" + }, + { + "circuit_id": "42a2388a-69eb-4c85-9b88-2464ecbb11f9", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-05-08T19:04:26.870Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.663213S", + "compute_time_sec": 1.663213, + "compute_times": { + "total": 1.66321, + "clean_up": 0.06591, + "file_setup": 0.41307, + "nargo_checks": 0.55662, + "save_results": 0.01186, + "solidity_contract_generation": 0.61576 + }, + "file_size": 1862, + "queue_time": "P0DT00H00M01.193742S", + "queue_time_sec": 1.193742, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "6b5b3717-e741-481c-975a-8a1097b8a8b5", + "circuit_name": "merkle_tree_proof_verifier", + "project_name": "merkle_tree_proof_verifier", + "circuit_type": "gnark", + "date_created": "2024-05-07T15:05:20.708Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "plonk", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M16.577691S", + "compute_time_sec": 16.577691, + "compute_times": { + "total": 16.57769, + "compile": 13.25747, + "clean_up": 1.46744, + "file_setup": 1.44995, + "save_results": 0.0142, + "compile_r1cs_and_keygen": 0.36175, + "solidity_contract_generation": 0.02689 + }, + "file_size": 24913870, + "queue_time": "P0DT00H00M01.383574S", + "queue_time_sec": 1.383574, + "uploaded_file_name": "merkle_tree_proof_verifier.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "2e9936b2-4fd9-4197-8f58-f153045e5aa6", + "circuit_name": "plonk-v2", + "project_name": "plonk-v2", + "circuit_type": "gnark", + "date_created": "2024-05-06T23:06:17.484Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "plonk", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M18.924739S", + "compute_time_sec": 18.924739, + "compute_times": { + "total": 18.92474, + "compile": 14.28033, + "clean_up": 1.85156, + "file_setup": 2.37299, + "save_results": 0.00744, + "compile_r1cs_and_keygen": 0.39728, + "solidity_contract_generation": 0.01514 + }, + "file_size": 21425014, + "queue_time": "P0DT00H00M01.419993S", + "queue_time_sec": 1.419993, + "uploaded_file_name": "plonk-v2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "406dcfa3-b3cd-4509-afd7-429a35165cb0", + "circuit_name": "plonk", + "project_name": "plonk", + "circuit_type": "gnark", + "date_created": "2024-05-06T23:03:51.240Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "plonk", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M14.891320S", + "compute_time_sec": 14.89132, + "compute_times": { + "total": 14.89132, + "clean_up": 13.00031, + "file_setup": 1.89101 + }, + "file_size": 4774, + "queue_time": "P0DT00H00M01.237140S", + "queue_time_sec": 1.23714, + "uploaded_file_name": "plonk.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:21:2: plonk redeclared in this block\n\t./prover.go:16:2: other declaration of plonk\n./prover.go:21:2: \"github.com/sindri-labs/gnark-scaffold/example\" imported as plonk and not used\n./prover.go:57:20: undefined: plonk.Circuit\n./prover.go:251:17: undefined: plonk.FromJson\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "9ac9907f-7d0c-47d8-9c42-d00a02f3f92d", + "circuit_name": "cubic", + "project_name": "cubic", + "circuit_type": "gnark", + "date_created": "2024-05-06T23:03:02.077Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "plonk", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M19.344635S", + "compute_time_sec": 19.344635, + "compute_times": { + "total": 19.34464, + "compile": 14.32826, + "clean_up": 2.08091, + "file_setup": 2.4985, + "save_results": 0.00729, + "compile_r1cs_and_keygen": 0.41301, + "solidity_contract_generation": 0.01667 + }, + "file_size": 21426472, + "queue_time": "P0DT00H00M01.676427S", + "queue_time_sec": 1.676427, + "uploaded_file_name": "cubic.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "4a2a09eb-61ce-47b8-bcef-e49e9cc37125", + "circuit_name": "tester-circuit", + "project_name": "tester-circuit", + "circuit_type": "noir", + "date_created": "2024-04-22T16:28:04.169Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.386574S", + "compute_time_sec": 1.386574, + "compute_times": { + "total": 1.38657, + "clean_up": 0.01364, + "file_setup": 0.34649, + "nargo_checks": 0.46409, + "save_results": 0.00672, + "solidity_contract_generation": 0.55564 + }, + "file_size": 1671, + "queue_time": "P0DT00H00M01.243693S", + "queue_time_sec": 1.243693, + "uploaded_file_name": "tester-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "tester_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "87f917d5-3da2-4c41-8937-3717a5b2b08b", + "circuit_name": "tester-circuit", + "project_name": "tester-circuit", + "circuit_type": "noir", + "date_created": "2024-04-22T16:27:18.657Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "main" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.324427S", + "compute_time_sec": 1.324427, + "compute_times": { + "total": 1.32443, + "clean_up": 0.01468, + "file_setup": 0.33463, + "nargo_checks": 0.44369, + "save_results": 0.0068, + "solidity_contract_generation": 0.52462 + }, + "file_size": 1674, + "queue_time": "P0DT00H00M01.553507S", + "queue_time_sec": 1.553507, + "uploaded_file_name": "tester-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "tester_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "8d487f79-d4e6-4bfa-9a2d-6ea586e1f480", + "circuit_name": "tester-circuit", + "project_name": "tester-circuit", + "circuit_type": "noir", + "date_created": "2024-04-22T16:20:36.119Z", + "meta": {}, + "num_proofs": 2, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "v1.0.0" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.304837S", + "compute_time_sec": 1.304837, + "compute_times": { + "total": 1.30484, + "clean_up": 0.01199, + "file_setup": 0.32408, + "nargo_checks": 0.44232, + "save_results": 0.00542, + "solidity_contract_generation": 0.52103 + }, + "file_size": 1660, + "queue_time": "P0DT00H00M01.563638S", + "queue_time_sec": 1.563638, + "uploaded_file_name": "tester-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "tester_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "4d72d7aa-d2bc-4d51-8afc-75403c4095a8", + "circuit_name": "tester-circuit", + "project_name": "tester-circuit", + "circuit_type": "noir", + "date_created": "2024-04-22T16:19:57.266Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.343562S", + "compute_time_sec": 1.343562, + "compute_times": { + "total": 1.34356, + "clean_up": 0.01182, + "file_setup": 0.33748, + "nargo_checks": 0.44789, + "save_results": 0.00582, + "solidity_contract_generation": 0.54056 + }, + "file_size": 1666, + "queue_time": "P0DT00H00M01.656057S", + "queue_time_sec": 1.656057, + "uploaded_file_name": "tester-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "tester_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "5e571523-7930-4d4a-a3f8-d5c3c7d2bf17", + "circuit_name": "tester-circuit", + "project_name": "tester-circuit", + "circuit_type": "noir", + "date_created": "2024-04-22T16:13:21.693Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.356896S", + "compute_time_sec": 1.356896, + "compute_times": { + "total": 1.3569, + "clean_up": 0.02826, + "file_setup": 0.30386, + "nargo_checks": 0.4299, + "save_results": 0.00657, + "solidity_contract_generation": 0.5883 + }, + "file_size": 1655, + "queue_time": "P0DT00H00M01.635640S", + "queue_time_sec": 1.63564, + "uploaded_file_name": "tester-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "tester_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "cbd0c7b7-1c2b-4d79-b2d8-b0b2b9360042", + "circuit_name": "nn", + "project_name": "nn", + "circuit_type": "noir", + "date_created": "2024-04-22T15:11:02.448Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.344409S", + "compute_time_sec": 1.344409, + "compute_times": { + "total": 1.34441, + "clean_up": 0.04438, + "file_setup": 0.31571, + "nargo_checks": 0.43685, + "save_results": 0.00695, + "solidity_contract_generation": 0.54053 + }, + "file_size": 1651, + "queue_time": "P0DT00H00M01.325815S", + "queue_time_sec": 1.325815, + "uploaded_file_name": "nn.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "nn", + "noir_version": "0.23.0" + }, + { + "circuit_id": "4b389643-70d4-4fdb-8fe4-1dc11ca163f2", + "circuit_name": "is-equal", + "project_name": "is-equal", + "circuit_type": "noir", + "date_created": "2024-04-03T13:10:39.372Z", + "meta": {}, + "num_proofs": 21, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.154906S", + "compute_time_sec": 1.154906, + "compute_times": { + "total": 1.15491, + "clean_up": 0.0384, + "file_setup": 0.14133, + "nargo_checks": 0.45313, + "save_results": 0.00591, + "solidity_contract_generation": 0.51613 + }, + "file_size": 1665, + "queue_time": "P0DT00H00M00.550668S", + "queue_time_sec": 0.550668, + "uploaded_file_name": "is-equal.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "is_equal", + "noir_version": "0.23.0" + }, + { + "circuit_id": "043fa872-2b4f-400d-82da-6963519379be", + "circuit_name": "is-equal", + "project_name": "is-equal", + "circuit_type": "noir", + "date_created": "2024-04-03T13:07:20.025Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.138626S", + "compute_time_sec": 1.138626, + "compute_times": { + "total": 1.13863, + "clean_up": 0.07203, + "file_setup": 0.13056, + "nargo_checks": 0.42884, + "save_results": 0.00285, + "solidity_contract_generation": 0.50434 + }, + "file_size": 1665, + "queue_time": "P0DT00H00M00.525513S", + "queue_time_sec": 0.525513, + "uploaded_file_name": "is-equal.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "is_equal", + "noir_version": "0.23.0" + }, + { + "circuit_id": "a03db9cb-0677-4c69-b6e9-20aeb72bb481", + "circuit_name": "is-equal", + "project_name": "is-equal", + "circuit_type": "noir", + "date_created": "2024-04-03T13:02:58.013Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.144571S", + "compute_time_sec": 1.144571, + "compute_times": { + "total": 1.14457, + "clean_up": 0.02556, + "file_setup": 0.15006, + "nargo_checks": 0.43593, + "save_results": 0.00514, + "solidity_contract_generation": 0.52789 + }, + "file_size": 1662, + "queue_time": "P0DT00H00M01.324640S", + "queue_time_sec": 1.32464, + "uploaded_file_name": "is-equal.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "is_equal", + "noir_version": "0.23.0" + }, + { + "circuit_id": "1efe944f-8b6c-4d4f-bd7a-a9b449783e17", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-04-01T22:08:18.866Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.407891S", + "compute_time_sec": 1.407891, + "compute_times": { + "total": 1.40789, + "clean_up": 0.01565, + "file_setup": 0.14992, + "nargo_checks": 0.57023, + "save_results": 0.01407, + "solidity_contract_generation": 0.65802 + }, + "file_size": 1662, + "queue_time": "P0DT00H00M00.516286S", + "queue_time_sec": 0.516286, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "563aa13c-06cd-49ab-affa-8e9fc91cf805", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-04-01T22:07:04.976Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.502735S", + "compute_time_sec": 1.502735, + "compute_times": { + "total": 1.50274, + "clean_up": 0.01377, + "file_setup": 0.16013, + "nargo_checks": 0.60234, + "save_results": 0.01441, + "solidity_contract_generation": 0.71208 + }, + "file_size": 1659, + "queue_time": "P0DT00H00M00.495637S", + "queue_time_sec": 0.495637, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "dc828cc9-6e93-4f57-bc89-9302dc0c7831", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:53.307Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.300842S", + "compute_time_sec": 8.300842, + "compute_times": { + "total": 8.30084, + "clean_up": 0.01058, + "create_cpp": 0.04703, + "file_setup": 0.19224, + "compile_cpp": 4.42416, + "create_r1cs": 0.01782, + "save_results": 0.00369, + "get_r1cs_info": 0.00051, + "groth16_setup": 1.24968, + "export_verification_key": 1.1721, + "download_trusted_setup_file": 0.00155, + "solidity_contract_generation": 1.18149 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M42.153393S", + "queue_time_sec": 42.153393, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "818c3201-85e7-40db-b581-e8e91c0842ae", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:53.265Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.167072S", + "compute_time_sec": 8.167072, + "compute_times": { + "total": 8.16707, + "clean_up": 0.00852, + "create_cpp": 0.07302, + "file_setup": 0.17496, + "compile_cpp": 4.39795, + "create_r1cs": 0.01386, + "save_results": 0.00292, + "get_r1cs_info": 0.0004, + "groth16_setup": 1.1337, + "export_verification_key": 1.17324, + "download_trusted_setup_file": 0.00124, + "solidity_contract_generation": 1.18728 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M41.715218S", + "queue_time_sec": 41.715218, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ae524245-3952-4a4e-b2eb-4c7f0d7553d8", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:53.154Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.447077S", + "compute_time_sec": 9.447077, + "compute_times": { + "total": 9.44708, + "clean_up": 0.01099, + "create_cpp": 0.06845, + "file_setup": 0.15476, + "compile_cpp": 4.66326, + "create_r1cs": 0.02882, + "save_results": 0.00406, + "get_r1cs_info": 0.00075, + "groth16_setup": 1.60662, + "export_verification_key": 1.51103, + "download_trusted_setup_file": 0.00311, + "solidity_contract_generation": 1.39522 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M38.673517S", + "queue_time_sec": 38.673517, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "de1372ee-d93f-4c54-8161-1ace15109f53", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:53.115Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "browser-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.696964S", + "compute_time_sec": 8.696964, + "compute_times": { + "total": 8.69696, + "clean_up": 0.00921, + "create_cpp": 0.04555, + "file_setup": 0.12959, + "compile_cpp": 4.76746, + "create_r1cs": 0.01546, + "save_results": 0.00255, + "get_r1cs_info": 0.00039, + "groth16_setup": 1.27699, + "export_verification_key": 1.284, + "download_trusted_setup_file": 0.00131, + "solidity_contract_generation": 1.16446 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M33.648980S", + "queue_time_sec": 33.64898, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ac4adb36-753c-47e5-9c00-fb84a3a398f2", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:53.005Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.648787S", + "compute_time_sec": 9.648787, + "compute_times": { + "total": 9.64879, + "clean_up": 0.00972, + "create_cpp": 0.054, + "file_setup": 0.20357, + "compile_cpp": 4.5631, + "create_r1cs": 0.01429, + "save_results": 0.00769, + "get_r1cs_info": 0.00033, + "groth16_setup": 1.35239, + "export_verification_key": 1.30451, + "download_trusted_setup_file": 0.80159, + "solidity_contract_generation": 1.3376 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M32.157729S", + "queue_time_sec": 32.157729, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "aab290ef-753b-48a8-8685-2b85c7400b02", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:52.943Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.714657S", + "compute_time_sec": 9.714657, + "compute_times": { + "total": 9.71466, + "clean_up": 0.00968, + "create_cpp": 0.05344, + "file_setup": 0.20304, + "compile_cpp": 4.53522, + "create_r1cs": 0.01421, + "save_results": 0.00775, + "get_r1cs_info": 0.00049, + "groth16_setup": 1.38825, + "export_verification_key": 1.31224, + "download_trusted_setup_file": 0.92616, + "solidity_contract_generation": 1.26417 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M31.703950S", + "queue_time_sec": 31.70395, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5b7c2d94-cd15-4b99-8400-5522659fb357", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:51.603Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.650152S", + "compute_time_sec": 9.650152, + "compute_times": { + "total": 9.65015, + "clean_up": 0.03581, + "create_cpp": 0.0654, + "file_setup": 0.17452, + "compile_cpp": 4.68913, + "create_r1cs": 0.02965, + "save_results": 0.00473, + "get_r1cs_info": 0.00082, + "groth16_setup": 1.5979, + "export_verification_key": 1.51808, + "download_trusted_setup_file": 0.00314, + "solidity_contract_generation": 1.53097 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M29.957960S", + "queue_time_sec": 29.95796, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "a621537b-a8f7-418f-83d1-099c763b63a0", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:51.423Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.387811S", + "compute_time_sec": 9.387811, + "compute_times": { + "total": 9.38781, + "clean_up": 0.01084, + "create_cpp": 0.06225, + "file_setup": 0.17678, + "compile_cpp": 4.75973, + "create_r1cs": 0.02579, + "save_results": 0.00383, + "get_r1cs_info": 0.00061, + "groth16_setup": 1.45259, + "export_verification_key": 1.5012, + "download_trusted_setup_file": 0.00204, + "solidity_contract_generation": 1.39214 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M20.152216S", + "queue_time_sec": 20.152216, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "46351b4f-be5f-411b-9d39-16986d2197ee", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:51.418Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.261796S", + "compute_time_sec": 8.261796, + "compute_times": { + "total": 8.2618, + "clean_up": 0.01208, + "create_cpp": 0.04638, + "file_setup": 0.13565, + "compile_cpp": 4.5488, + "create_r1cs": 0.01433, + "save_results": 0.00263, + "get_r1cs_info": 0.00033, + "groth16_setup": 1.18363, + "export_verification_key": 1.15443, + "download_trusted_setup_file": 0.00121, + "solidity_contract_generation": 1.16231 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M26.539083S", + "queue_time_sec": 26.539083, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "24784240-c6cf-419a-8e6f-eaa9d9679858", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:51.414Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "sdk-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.311126S", + "compute_time_sec": 8.311126, + "compute_times": { + "total": 8.31113, + "clean_up": 0.01822, + "create_cpp": 0.04616, + "file_setup": 0.13746, + "compile_cpp": 4.52551, + "create_r1cs": 0.01461, + "save_results": 0.00244, + "get_r1cs_info": 0.00034, + "groth16_setup": 1.20083, + "export_verification_key": 1.20327, + "download_trusted_setup_file": 0.00122, + "solidity_contract_generation": 1.16107 + }, + "file_size": 236757, + "queue_time": "P0DT00H00M17.688147S", + "queue_time_sec": 17.688147, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "da7ec15e-2e70-453e-a8bb-88e16b084875", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:51.237Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.411685S", + "compute_time_sec": 9.411685, + "compute_times": { + "total": 9.41169, + "clean_up": 0.01036, + "create_cpp": 0.06139, + "file_setup": 0.15349, + "compile_cpp": 4.7262, + "create_r1cs": 0.03055, + "save_results": 0.00449, + "get_r1cs_info": 0.0009, + "groth16_setup": 1.54009, + "export_verification_key": 1.42588, + "download_trusted_setup_file": 0.00306, + "solidity_contract_generation": 1.45527 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M10.322269S", + "queue_time_sec": 10.322269, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6ab15295-2e90-4757-bb0d-764e0bbf90a2", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:51.228Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.037177S", + "compute_time_sec": 8.037177, + "compute_times": { + "total": 8.03718, + "clean_up": 0.01488, + "create_cpp": 0.04745, + "file_setup": 0.14306, + "compile_cpp": 4.31363, + "create_r1cs": 0.01476, + "save_results": 0.00337, + "get_r1cs_info": 0.00032, + "groth16_setup": 1.1845, + "export_verification_key": 1.13368, + "download_trusted_setup_file": 0.00127, + "solidity_contract_generation": 1.18025 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M09.283458S", + "queue_time_sec": 9.283458, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "7c416137-1c5a-48e7-8bb4-f8113af54daa", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:51.030Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.358749S", + "compute_time_sec": 9.358749, + "compute_times": { + "total": 9.35875, + "clean_up": 0.02555, + "create_cpp": 0.05862, + "file_setup": 0.16129, + "compile_cpp": 4.68529, + "create_r1cs": 0.02886, + "save_results": 0.01774, + "get_r1cs_info": 0.0008, + "groth16_setup": 1.41793, + "export_verification_key": 1.54632, + "download_trusted_setup_file": 0.00345, + "solidity_contract_generation": 1.41289 + }, + "file_size": 236757, + "queue_time": "P0DT00H00M00.562726S", + "queue_time_sec": 0.562726, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "4f59210a-945f-4178-a603-d2b085a504a0", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:51.007Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.296402S", + "compute_time_sec": 8.296402, + "compute_times": { + "total": 8.2964, + "clean_up": 0.03951, + "create_cpp": 0.0462, + "file_setup": 0.13575, + "compile_cpp": 4.46822, + "create_r1cs": 0.0149, + "save_results": 0.00835, + "get_r1cs_info": 0.00034, + "groth16_setup": 1.1834, + "export_verification_key": 1.19962, + "download_trusted_setup_file": 0.00136, + "solidity_contract_generation": 1.19875 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M00.556461S", + "queue_time_sec": 0.556461, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d48778bf-5fe5-44f5-9e0a-519a163cba07", + "circuit_name": "cc", + "project_name": "cc", + "circuit_type": "circom", + "date_created": "2024-03-25T16:38:07.269Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.869269S", + "compute_time_sec": 8.869269, + "compute_times": { + "total": 8.86927, + "clean_up": 0.20406, + "create_cpp": 0.07301, + "file_setup": 0.20897, + "compile_cpp": 5.00756, + "create_r1cs": 0.04301, + "save_results": 0.01312, + "get_r1cs_info": 0.00105, + "groth16_setup": 1.09317, + "export_verification_key": 1.10836, + "download_trusted_setup_file": 0.00352, + "solidity_contract_generation": 1.11345 + }, + "file_size": 1732314, + "queue_time": "P0DT00H00M00.879684S", + "queue_time_sec": 0.879684, + "uploaded_file_name": "cc.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "9cda3292-42db-4341-978c-2b8d6eafa12b", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:39.339Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.528368S", + "compute_time_sec": 9.528368, + "compute_times": { + "total": 9.52837, + "clean_up": 0.50335, + "create_cpp": 0.05438, + "file_setup": 0.23072, + "compile_cpp": 4.35643, + "create_r1cs": 0.01425, + "save_results": 0.0076, + "get_r1cs_info": 0.00036, + "groth16_setup": 1.17063, + "export_verification_key": 1.18302, + "download_trusted_setup_file": 0.82424, + "solidity_contract_generation": 1.18339 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M37.968571S", + "queue_time_sec": 37.968571, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c6747326-4b83-406e-8ffb-ad162ab52023", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:39.303Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.429740S", + "compute_time_sec": 9.42974, + "compute_times": { + "total": 9.42974, + "clean_up": 0.05123, + "create_cpp": 0.06946, + "file_setup": 0.16103, + "compile_cpp": 4.89268, + "create_r1cs": 0.02832, + "save_results": 0.00528, + "get_r1cs_info": 0.00083, + "groth16_setup": 1.43857, + "export_verification_key": 1.39906, + "download_trusted_setup_file": 0.00318, + "solidity_contract_generation": 1.38011 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M36.557482S", + "queue_time_sec": 36.557482, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "b7063547-4aeb-4cc3-a3e5-66d8573ab9c9", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:39.180Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.388982S", + "compute_time_sec": 9.388982, + "compute_times": { + "total": 9.38898, + "clean_up": 0.09387, + "create_cpp": 0.05952, + "file_setup": 0.1473, + "compile_cpp": 4.95608, + "create_r1cs": 0.02315, + "save_results": 0.00361, + "get_r1cs_info": 0.00067, + "groth16_setup": 1.67465, + "export_verification_key": 1.32213, + "download_trusted_setup_file": 0.00181, + "solidity_contract_generation": 1.10619 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M36.718529S", + "queue_time_sec": 36.718529, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "4c58913b-1cab-4f98-bf88-6351b66734bb", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:39.165Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.290796S", + "compute_time_sec": 9.290796, + "compute_times": { + "total": 9.2908, + "clean_up": 0.66644, + "create_cpp": 0.0687, + "file_setup": 0.21611, + "compile_cpp": 4.67702, + "create_r1cs": 0.02662, + "save_results": 0.0036, + "get_r1cs_info": 0.0007, + "groth16_setup": 1.19273, + "export_verification_key": 1.08746, + "download_trusted_setup_file": 0.0025, + "solidity_contract_generation": 1.34893 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M35.218856S", + "queue_time_sec": 35.218856, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "95769f2c-d435-460b-b420-d2b989bc5304", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:39.049Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "browser-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.848413S", + "compute_time_sec": 10.848413, + "compute_times": { + "total": 10.84841, + "clean_up": 1.23668, + "create_cpp": 0.06744, + "file_setup": 0.14282, + "compile_cpp": 4.81176, + "create_r1cs": 0.02894, + "save_results": 0.00523, + "get_r1cs_info": 0.00071, + "groth16_setup": 1.57736, + "export_verification_key": 1.53327, + "download_trusted_setup_file": 0.0031, + "solidity_contract_generation": 1.44109 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M30.248519S", + "queue_time_sec": 30.248519, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "158b8be9-704a-4d06-b50a-d6ddab770913", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:39.039Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.588162S", + "compute_time_sec": 9.588162, + "compute_times": { + "total": 9.58816, + "clean_up": 0.4741, + "create_cpp": 0.06118, + "file_setup": 0.21078, + "compile_cpp": 4.83092, + "create_r1cs": 0.02728, + "save_results": 0.00364, + "get_r1cs_info": 0.00085, + "groth16_setup": 1.27631, + "export_verification_key": 1.47157, + "download_trusted_setup_file": 0.0031, + "solidity_contract_generation": 1.22842 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M26.702068S", + "queue_time_sec": 26.702068, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ec4c4733-167d-437e-9bea-fb2f2bb508ae", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:36.906Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.362552S", + "compute_time_sec": 11.362552, + "compute_times": { + "total": 11.36255, + "clean_up": 0.83834, + "create_cpp": 0.07262, + "file_setup": 0.25701, + "compile_cpp": 5.00159, + "create_r1cs": 0.03197, + "save_results": 0.01616, + "get_r1cs_info": 0.0009, + "groth16_setup": 1.49515, + "export_verification_key": 1.42936, + "download_trusted_setup_file": 0.79597, + "solidity_contract_generation": 1.42347 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M26.992234S", + "queue_time_sec": 26.992234, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c5bccf8b-4c20-4e6b-8f9e-6c48a434fa0b", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:36.813Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.119539S", + "compute_time_sec": 10.119539, + "compute_times": { + "total": 10.11954, + "clean_up": 0.1179, + "create_cpp": 0.07316, + "file_setup": 0.27305, + "compile_cpp": 4.72684, + "create_r1cs": 0.02821, + "save_results": 0.01351, + "get_r1cs_info": 0.00055, + "groth16_setup": 1.16185, + "export_verification_key": 1.34382, + "download_trusted_setup_file": 0.91821, + "solidity_contract_generation": 1.46242 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M26.737447S", + "queue_time_sec": 26.737447, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5bf0ffc4-eda0-4449-a49d-10e8f9f2a003", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:36.768Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.520273S", + "compute_time_sec": 9.520273, + "compute_times": { + "total": 9.52027, + "clean_up": 0.09121, + "create_cpp": 0.06792, + "file_setup": 0.14105, + "compile_cpp": 4.59567, + "create_r1cs": 0.02713, + "save_results": 0.0045, + "get_r1cs_info": 0.0007, + "groth16_setup": 1.48077, + "export_verification_key": 1.49868, + "download_trusted_setup_file": 0.003, + "solidity_contract_generation": 1.60964 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M22.379911S", + "queue_time_sec": 22.379911, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "499cdc89-0c99-4c47-8278-aa0f5dfe31dc", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:36.657Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.049860S", + "compute_time_sec": 9.04986, + "compute_times": { + "total": 9.04986, + "clean_up": 0.81357, + "create_cpp": 0.05269, + "file_setup": 0.164, + "compile_cpp": 4.55828, + "create_r1cs": 0.04805, + "save_results": 0.003, + "get_r1cs_info": 0.00079, + "groth16_setup": 1.13113, + "export_verification_key": 1.10942, + "download_trusted_setup_file": 0.00309, + "solidity_contract_generation": 1.16584 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M19.174245S", + "queue_time_sec": 19.174245, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "95155187-fee5-4e68-8e3d-a17f811c6b3a", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:36.604Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.895088S", + "compute_time_sec": 10.895088, + "compute_times": { + "total": 10.89509, + "clean_up": 1.42058, + "create_cpp": 0.06192, + "file_setup": 0.14353, + "compile_cpp": 4.65622, + "create_r1cs": 0.02447, + "save_results": 0.00348, + "get_r1cs_info": 0.00036, + "groth16_setup": 1.6084, + "export_verification_key": 1.54193, + "download_trusted_setup_file": 0.00126, + "solidity_contract_generation": 1.43294 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M11.035836S", + "queue_time_sec": 11.035836, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "e4d79f08-c990-4b54-b46d-6bcc7cf284f4", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:36.506Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.385097S", + "compute_time_sec": 8.385097, + "compute_times": { + "total": 8.3851, + "clean_up": 0.01177, + "create_cpp": 0.06686, + "file_setup": 0.14812, + "compile_cpp": 4.72026, + "create_r1cs": 0.02541, + "save_results": 0.00412, + "get_r1cs_info": 0.00076, + "groth16_setup": 1.21829, + "export_verification_key": 1.09398, + "download_trusted_setup_file": 0.00306, + "solidity_contract_generation": 1.09247 + }, + "file_size": 236762, + "queue_time": "P0DT00H00M10.299071S", + "queue_time_sec": 10.299071, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5ac9a0cc-6aa1-4eb1-9c40-00c04da04617", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:36.330Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.115381S", + "compute_time_sec": 9.115381, + "compute_times": { + "total": 9.11538, + "clean_up": 0.22825, + "create_cpp": 0.06671, + "file_setup": 0.15571, + "compile_cpp": 5.13999, + "create_r1cs": 0.02866, + "save_results": 0.01306, + "get_r1cs_info": 0.00074, + "groth16_setup": 1.10345, + "export_verification_key": 1.1918, + "download_trusted_setup_file": 0.00331, + "solidity_contract_generation": 1.1837 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.655269S", + "queue_time_sec": 0.655269, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "e0cb8a84-a412-4108-9a8d-6cf18878507f", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:36.309Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "sdk-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.937672S", + "compute_time_sec": 9.937672, + "compute_times": { + "total": 9.93767, + "clean_up": 0.51989, + "create_cpp": 0.06167, + "file_setup": 0.16236, + "compile_cpp": 4.65773, + "create_r1cs": 0.0281, + "save_results": 0.01653, + "get_r1cs_info": 0.00085, + "groth16_setup": 1.56815, + "export_verification_key": 1.51501, + "download_trusted_setup_file": 0.00329, + "solidity_contract_generation": 1.40407 + }, + "file_size": 236762, + "queue_time": "P0DT00H00M00.555238S", + "queue_time_sec": 0.555238, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1eb7a1e2-a6c8-4701-9701-99a088645959", + "circuit_name": "hash-checker", + "project_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-03-23T21:12:35.246Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.689069S", + "compute_time_sec": 10.689069, + "compute_times": { + "total": 10.68907, + "clean_up": 0.09943, + "file_setup": 0.20059, + "create_r1cs": 0.38617, + "create_wasm": 1.14588, + "save_results": 0.01769, + "get_r1cs_info": 0.00119, + "groth16_setup": 4.83345, + "export_verification_key": 1.48649, + "download_trusted_setup_file": 1.02672, + "solidity_contract_generation": 1.49146 + }, + "file_size": 3354345, + "queue_time": "P0DT00H00M00.516109S", + "queue_time_sec": 0.516109, + "uploaded_file_name": "hash-checker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "e8de0926-bf82-44df-b8fc-7de8d9e52bf3", + "circuit_name": "pagerank", + "project_name": "pagerank", + "circuit_type": "noir", + "date_created": "2024-03-22T22:40:05.233Z", + "meta": {}, + "num_proofs": 2, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M33.892752S", + "compute_time_sec": 33.892752, + "compute_times": { + "total": 33.89275, + "clean_up": 0.09212, + "file_setup": 0.20141, + "nargo_checks": 12.85914, + "save_results": 0.00551, + "solidity_contract_generation": 20.73457 + }, + "file_size": 1900960, + "queue_time": "P0DT00H00M00.506670S", + "queue_time_sec": 0.50667, + "uploaded_file_name": "pagerank.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 344141, + "circuit_size": 349595, + "curve": "bn254", + "nargo_package_name": "pagerank", + "noir_version": "0.17.0" + }, + { + "circuit_id": "4ee2e4c3-50b5-4e8a-8366-8cf321bd1e6a", + "circuit_name": "pagerank", + "project_name": "pagerank", + "circuit_type": "noir", + "date_created": "2024-03-22T15:58:22.450Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "other-tag" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M33.867848S", + "compute_time_sec": 33.867848, + "compute_times": { + "total": 33.86785, + "clean_up": 0.10154, + "file_setup": 0.20042, + "nargo_checks": 9.97368, + "save_results": 0.01133, + "solidity_contract_generation": 23.58088 + }, + "file_size": 1900960, + "queue_time": "P0DT00H00M00.545991S", + "queue_time_sec": 0.545991, + "uploaded_file_name": "pagerank.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 344141, + "circuit_size": 349595, + "curve": "bn254", + "nargo_package_name": "pagerank", + "noir_version": "0.17.0" + }, + { + "circuit_id": "6d2b695b-5970-4a53-a11c-511122174f36", + "circuit_name": "pagerank", + "project_name": "pagerank", + "circuit_type": "noir", + "date_created": "2024-03-22T15:56:51.614Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M35.743538S", + "compute_time_sec": 35.743538, + "compute_times": { + "total": 35.74354, + "clean_up": 0.08147, + "file_setup": 0.21652, + "nargo_checks": 12.8313, + "save_results": 0.01402, + "solidity_contract_generation": 22.60023 + }, + "file_size": 1900961, + "queue_time": "P0DT00H00M00.674929S", + "queue_time_sec": 0.674929, + "uploaded_file_name": "pagerank.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 344141, + "circuit_size": 349595, + "curve": "bn254", + "nargo_package_name": "pagerank", + "noir_version": "0.17.0" + }, + { + "circuit_id": "8a0d1c87-1ce1-459e-9005-7933bfcde177", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:19:57.783Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "vtest10" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.132919S", + "compute_time_sec": 11.132919, + "compute_times": { + "total": 11.13292, + "clean_up": 1.23371, + "create_cpp": 0.06909, + "file_setup": 0.19449, + "compile_cpp": 4.95549, + "create_r1cs": 0.05109, + "save_results": 0.01738, + "get_r1cs_info": 0.00061, + "groth16_setup": 1.51633, + "export_verification_key": 1.50223, + "download_trusted_setup_file": 0.00184, + "solidity_contract_generation": 1.59066 + }, + "file_size": 1663475, + "queue_time": "P0DT00H00M00.596129S", + "queue_time_sec": 0.596129, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "e6075b2d-eb1e-46ea-8cbf-b27532759097", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:19:37.965Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.282399S", + "compute_time_sec": 10.282399, + "compute_times": { + "total": 10.2824, + "clean_up": 1.87361, + "create_cpp": 0.07134, + "file_setup": 0.2302, + "compile_cpp": 4.77509, + "create_r1cs": 0.0415, + "save_results": 0.01329, + "get_r1cs_info": 0.00087, + "groth16_setup": 1.12996, + "export_verification_key": 1.07128, + "download_trusted_setup_file": 0.00352, + "solidity_contract_generation": 1.07173 + }, + "file_size": 1663524, + "queue_time": "P0DT00H00M00.514095S", + "queue_time_sec": 0.514095, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "4bd523e4-c9a5-4d9d-b706-2a1a9cf1d6ee", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:19:13.234Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.624967S", + "compute_time_sec": 11.624967, + "compute_times": { + "total": 11.62497, + "clean_up": 2.11834, + "create_cpp": 0.06491, + "file_setup": 0.18741, + "compile_cpp": 4.73444, + "create_r1cs": 0.04151, + "save_results": 0.01716, + "get_r1cs_info": 0.0008, + "groth16_setup": 1.45856, + "export_verification_key": 1.49152, + "download_trusted_setup_file": 0.00326, + "solidity_contract_generation": 1.50706 + }, + "file_size": 1663507, + "queue_time": "P0DT00H00M00.542000S", + "queue_time_sec": 0.542, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "cd144ad5-0cde-4e1d-a7c1-f8fb96185d2f", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:18:58.957Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "main" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.413082S", + "compute_time_sec": 10.413082, + "compute_times": { + "total": 10.41308, + "clean_up": 1.90841, + "create_cpp": 0.07362, + "file_setup": 0.24132, + "compile_cpp": 4.75866, + "create_r1cs": 0.04767, + "save_results": 0.01329, + "get_r1cs_info": 0.00069, + "groth16_setup": 1.1514, + "export_verification_key": 1.13482, + "download_trusted_setup_file": 0.00333, + "solidity_contract_generation": 1.07988 + }, + "file_size": 1663484, + "queue_time": "P0DT00H00M00.520953S", + "queue_time_sec": 0.520953, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "6fe55a9f-843c-4b78-a48e-6100b96bf3c9", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:16:49.663Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "vtest8" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.607477S", + "compute_time_sec": 10.607477, + "compute_times": { + "total": 10.60748, + "clean_up": 1.19034, + "create_cpp": 0.08915, + "file_setup": 0.20011, + "compile_cpp": 4.65751, + "create_r1cs": 0.04206, + "save_results": 0.01559, + "get_r1cs_info": 0.00077, + "groth16_setup": 1.49838, + "export_verification_key": 1.41125, + "download_trusted_setup_file": 0.00326, + "solidity_contract_generation": 1.49906 + }, + "file_size": 1663488, + "queue_time": "P0DT00H00M00.583271S", + "queue_time_sec": 0.583271, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "45761777-c8c9-46c8-b6e6-d30f6e7b7e3a", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:16:04.003Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.678461S", + "compute_time_sec": 10.678461, + "compute_times": { + "total": 10.67846, + "clean_up": 1.83532, + "create_cpp": 0.08678, + "file_setup": 0.21239, + "compile_cpp": 4.86789, + "create_r1cs": 0.04306, + "save_results": 0.01501, + "get_r1cs_info": 0.00075, + "groth16_setup": 1.29062, + "export_verification_key": 1.23272, + "download_trusted_setup_file": 0.00329, + "solidity_contract_generation": 1.09064 + }, + "file_size": 1663527, + "queue_time": "P0DT00H00M00.522856S", + "queue_time_sec": 0.522856, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "8ad0b8de-ed95-4b02-a4cb-64943f4c3f6b", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:15:39.895Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "ews-update-workflow" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.709756S", + "compute_time_sec": 11.709756, + "compute_times": { + "total": 11.70976, + "clean_up": 2.10843, + "create_cpp": 0.0826, + "file_setup": 0.19283, + "compile_cpp": 4.76053, + "create_r1cs": 0.04417, + "save_results": 0.01569, + "get_r1cs_info": 0.00081, + "groth16_setup": 1.4405, + "export_verification_key": 1.38897, + "download_trusted_setup_file": 0.00335, + "solidity_contract_generation": 1.67188 + }, + "file_size": 1663512, + "queue_time": "P0DT00H00M00.551816S", + "queue_time_sec": 0.551816, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "48f8ae38-762e-4fa1-85d8-6857ed37cecc", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:10:25.929Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "vtest7" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.291259S", + "compute_time_sec": 10.291259, + "compute_times": { + "total": 10.29126, + "clean_up": 1.45173, + "create_cpp": 0.07496, + "file_setup": 0.24672, + "compile_cpp": 4.95293, + "create_r1cs": 0.04737, + "save_results": 0.01364, + "get_r1cs_info": 0.00075, + "groth16_setup": 1.21097, + "export_verification_key": 1.16064, + "download_trusted_setup_file": 0.00305, + "solidity_contract_generation": 1.12851 + }, + "file_size": 1663468, + "queue_time": "P0DT00H00M00.593364S", + "queue_time_sec": 0.593364, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "82457ba1-ef7d-49dd-a149-6a5cf7cd190c", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:10:24.598Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "ews-update-workflow" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.663766S", + "compute_time_sec": 10.663766, + "compute_times": { + "total": 10.66377, + "clean_up": 0.85062, + "create_cpp": 0.07549, + "file_setup": 0.21986, + "compile_cpp": 4.77566, + "create_r1cs": 0.04235, + "save_results": 0.01574, + "get_r1cs_info": 0.0008, + "groth16_setup": 1.60594, + "export_verification_key": 1.48908, + "download_trusted_setup_file": 0.00337, + "solidity_contract_generation": 1.58485 + }, + "file_size": 1663484, + "queue_time": "P0DT00H00M00.557984S", + "queue_time_sec": 0.557984, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "3742665d-19cd-4c98-a2cf-061840cb165d", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:09:46.247Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.973894S", + "compute_time_sec": 9.973894, + "compute_times": { + "total": 9.97389, + "clean_up": 1.34178, + "create_cpp": 0.08249, + "file_setup": 0.24827, + "compile_cpp": 4.67827, + "create_r1cs": 0.04315, + "save_results": 0.01336, + "get_r1cs_info": 0.00074, + "groth16_setup": 1.22841, + "export_verification_key": 1.13928, + "download_trusted_setup_file": 0.00366, + "solidity_contract_generation": 1.19448 + }, + "file_size": 1663527, + "queue_time": "P0DT00H00M00.491525S", + "queue_time_sec": 0.491525, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "5e1f9321-f9f7-4176-90ab-aec0c926cab6", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:07:19.230Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "vtest6" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.309174S", + "compute_time_sec": 11.309174, + "compute_times": { + "total": 11.30917, + "clean_up": 1.52893, + "create_cpp": 0.08016, + "file_setup": 0.20441, + "compile_cpp": 4.80143, + "create_r1cs": 0.04018, + "save_results": 0.01583, + "get_r1cs_info": 0.00079, + "groth16_setup": 1.4942, + "export_verification_key": 1.63114, + "download_trusted_setup_file": 0.0031, + "solidity_contract_generation": 1.50901 + }, + "file_size": 1663447, + "queue_time": "P0DT00H00M00.555224S", + "queue_time_sec": 0.555224, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "f05f8274-e9fc-42d7-b0f2-cf92bfbaf494", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:06:37.873Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.944963S", + "compute_time_sec": 9.944963, + "compute_times": { + "total": 9.94496, + "clean_up": 1.13119, + "create_cpp": 0.06774, + "file_setup": 0.19485, + "compile_cpp": 5.00766, + "create_r1cs": 0.04202, + "save_results": 0.01344, + "get_r1cs_info": 0.00076, + "groth16_setup": 1.22292, + "export_verification_key": 1.14135, + "download_trusted_setup_file": 0.00326, + "solidity_contract_generation": 1.11977 + }, + "file_size": 1663447, + "queue_time": "P0DT00H00M00.497610S", + "queue_time_sec": 0.49761, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "8cbddba4-24d1-4f91-af3f-a6a454d4e000", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:06:27.180Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "ews-update-workflow" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.244171S", + "compute_time_sec": 10.244171, + "compute_times": { + "total": 10.24417, + "clean_up": 0.62916, + "create_cpp": 0.08103, + "file_setup": 0.19514, + "compile_cpp": 4.78486, + "create_r1cs": 0.03511, + "save_results": 0.01427, + "get_r1cs_info": 0.00092, + "groth16_setup": 1.42218, + "export_verification_key": 1.5098, + "download_trusted_setup_file": 0.00331, + "solidity_contract_generation": 1.56839 + }, + "file_size": 1663452, + "queue_time": "P0DT00H00M00.552152S", + "queue_time_sec": 0.552152, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "3fc8f519-8a65-48c4-a223-cc645a46bbb1", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:04:39.571Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "ews-update-workflow" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.817861S", + "compute_time_sec": 9.817861, + "compute_times": { + "total": 9.81786, + "clean_up": 1.04035, + "create_cpp": 0.08147, + "file_setup": 0.22371, + "compile_cpp": 4.86953, + "create_r1cs": 0.0457, + "save_results": 0.01478, + "get_r1cs_info": 0.00074, + "groth16_setup": 1.15679, + "export_verification_key": 1.17304, + "download_trusted_setup_file": 0.00326, + "solidity_contract_generation": 1.20848 + }, + "file_size": 1663470, + "queue_time": "P0DT00H00M00.519248S", + "queue_time_sec": 0.519248, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "d3e7079e-86d4-46c0-b9d4-fc7d6ea2af30", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T12:52:56.310Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "vtest2" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.363183S", + "compute_time_sec": 11.363183, + "compute_times": { + "total": 11.36318, + "clean_up": 2.17182, + "create_cpp": 0.06633, + "file_setup": 0.20065, + "compile_cpp": 4.59783, + "create_r1cs": 0.04336, + "save_results": 0.01574, + "get_r1cs_info": 0.00078, + "groth16_setup": 1.45654, + "export_verification_key": 1.38337, + "download_trusted_setup_file": 0.00334, + "solidity_contract_generation": 1.42342 + }, + "file_size": 1663261, + "queue_time": "P0DT00H00M00.565082S", + "queue_time_sec": 0.565082, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "8a54a734-c9f0-4a5a-a4f2-19344194fc07", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T12:52:11.000Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "ews-update-workflow" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.537202S", + "compute_time_sec": 10.537202, + "compute_times": { + "total": 10.5372, + "clean_up": 1.85719, + "create_cpp": 0.0789, + "file_setup": 0.23887, + "compile_cpp": 4.80461, + "create_r1cs": 0.04037, + "save_results": 0.01363, + "get_r1cs_info": 0.00073, + "groth16_setup": 1.23675, + "export_verification_key": 1.15968, + "download_trusted_setup_file": 0.00342, + "solidity_contract_generation": 1.10305 + }, + "file_size": 1663300, + "queue_time": "P0DT00H00M00.537908S", + "queue_time_sec": 0.537908, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "fcbe9499-17a5-4c04-ba75-dc6a7b75dd7e", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T12:43:16.788Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "ews-update-workflow" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.631221S", + "compute_time_sec": 9.631221, + "compute_times": { + "total": 9.63122, + "clean_up": 0.07676, + "create_cpp": 0.07335, + "file_setup": 0.18891, + "compile_cpp": 4.81348, + "create_r1cs": 0.04154, + "save_results": 0.01386, + "get_r1cs_info": 0.00075, + "groth16_setup": 1.55637, + "export_verification_key": 1.45723, + "download_trusted_setup_file": 0.00332, + "solidity_contract_generation": 1.40565 + }, + "file_size": 1663276, + "queue_time": "P0DT00H00M00.613291S", + "queue_time_sec": 0.613291, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "b8e76828-7def-4e10-a4cb-6e69ae9f9718", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T12:31:36.230Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.451494S", + "compute_time_sec": 9.451494, + "compute_times": { + "total": 9.45149, + "clean_up": 0.22097, + "create_cpp": 0.09135, + "file_setup": 0.24026, + "compile_cpp": 5.17158, + "create_r1cs": 0.04161, + "save_results": 0.01256, + "get_r1cs_info": 0.00073, + "groth16_setup": 1.19608, + "export_verification_key": 1.27168, + "download_trusted_setup_file": 0.0033, + "solidity_contract_generation": 1.20138 + }, + "file_size": 1663158, + "queue_time": "P0DT00H00M00.561912S", + "queue_time_sec": 0.561912, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "ba8ff164-b5ca-424a-9cfb-ad4cf2b5164a", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T12:30:27.399Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "main" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.500431S", + "compute_time_sec": 11.500431, + "compute_times": { + "total": 11.50043, + "clean_up": 0.10156, + "create_cpp": 0.0804, + "file_setup": 0.20655, + "compile_cpp": 6.51566, + "create_r1cs": 0.03972, + "save_results": 0.00584, + "get_r1cs_info": 0.0004, + "groth16_setup": 1.28838, + "export_verification_key": 1.22863, + "download_trusted_setup_file": 0.92658, + "solidity_contract_generation": 1.1067 + }, + "file_size": 1663180, + "queue_time": "P0DT00H00M00.502725S", + "queue_time_sec": 0.502725, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "c8cadd69-dcf5-459a-9057-7735102bacbd", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T12:29:18.825Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "ews-test" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.545964S", + "compute_time_sec": 8.545964, + "compute_times": { + "total": 8.54596, + "clean_up": 0.21081, + "create_cpp": 0.07256, + "file_setup": 0.21206, + "compile_cpp": 4.67439, + "create_r1cs": 0.03481, + "save_results": 0.00442, + "get_r1cs_info": 0.00068, + "groth16_setup": 1.13559, + "export_verification_key": 1.10076, + "download_trusted_setup_file": 0.00318, + "solidity_contract_generation": 1.09672 + }, + "file_size": 1663170, + "queue_time": "P0DT00H00M00.522978S", + "queue_time_sec": 0.522978, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "bf1d41bf-9d43-4347-b350-ff2e9d4598dc", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-20T14:17:26.961Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.948803S", + "compute_time_sec": 1.948803, + "compute_times": { + "total": 1.9569640904664993, + "clean_up": 0.685289766639471, + "file_setup": 0.04410131648182869, + "nargo_checks": 0.5339768528938293, + "save_results": 0.014465417712926865, + "solidity_contract_generation": 0.6785672567784786 + }, + "file_size": 723, + "queue_time": "P0DT00H00M00.501854S", + "queue_time_sec": 0.501854, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "c455ee25-7368-4599-a731-dbe2579022ab", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-03-18T21:32:47.427Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M23.142756S", + "compute_time_sec": 23.142756, + "compute_times": { + "total": 23.14932489488274, + "clean_up": 0.0760608296841383, + "file_setup": 0.06907258089631796, + "create_r1cs": 0.731669841799885, + "create_wasm": 1.4455262953415513, + "save_results": 0.013108087237924337, + "get_r1cs_info": 0.0038050850853323936, + "groth16_setup": 16.28522607823834, + "export_verification_key": 1.5782433529384434, + "download_trusted_setup_file": 1.3958227057009935, + "solidity_contract_generation": 1.5503304479643703 + }, + "file_size": 6197756, + "queue_time": "P0DT00H00M00.555306S", + "queue_time_sec": 0.555306, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 + }, + { + "circuit_id": "d0887df0-0512-4bb3-9471-b0f1afc80395", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:29.501Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.128193S", + "compute_time_sec": 9.128193, + "compute_times": { + "total": 9.136056929826736, + "clean_up": 0.010104283690452576, + "create_cpp": 0.058623410761356354, + "file_setup": 0.08122945949435234, + "compile_cpp": 4.518433306366205, + "create_r1cs": 0.022324994206428528, + "save_results": 0.004861015826463699, + "get_r1cs_info": 0.0006176978349685669, + "groth16_setup": 1.4849628806114197, + "export_verification_key": 1.4718086533248425, + "download_trusted_setup_file": 0.002116568386554718, + "solidity_contract_generation": 1.4806030206382275 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M38.842780S", + "queue_time_sec": 38.84278, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0eec7846-eef7-4b87-8e74-ad79a85f269c", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:29.471Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.104584S", + "compute_time_sec": 9.104584, + "compute_times": { + "total": 9.113569144159555, + "clean_up": 0.009724732488393784, + "create_cpp": 0.06440294161438942, + "file_setup": 0.038712695240974426, + "compile_cpp": 4.633099965751171, + "create_r1cs": 0.022221941500902176, + "save_results": 0.004806403070688248, + "get_r1cs_info": 0.0008087791502475739, + "groth16_setup": 1.3770955502986908, + "export_verification_key": 1.5450172796845436, + "download_trusted_setup_file": 0.0030752718448638916, + "solidity_contract_generation": 1.4137961380183697 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M38.135370S", + "queue_time_sec": 38.13537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c71675ac-6776-48d6-9a3b-c86e0342dec1", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:29.383Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "browser-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.752837S", + "compute_time_sec": 9.752837, + "compute_times": { + "total": 9.759647552389652, + "clean_up": 0.009252616204321384, + "create_cpp": 0.05602269619703293, + "file_setup": 0.030205676797777414, + "compile_cpp": 4.655756023712456, + "create_r1cs": 0.030316375195980072, + "save_results": 0.02680853195488453, + "get_r1cs_info": 0.0006379019469022751, + "groth16_setup": 1.7292209956794977, + "export_verification_key": 1.66788710327819, + "download_trusted_setup_file": 0.002534266095608473, + "solidity_contract_generation": 1.5505848499014974 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M29.692094S", + "queue_time_sec": 29.692094, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "9c8dd510-1298-40ea-8902-20fe9f26cef9", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:29.369Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.776700S", + "compute_time_sec": 9.7767, + "compute_times": { + "total": 9.88929507508874, + "clean_up": 0.011690061539411545, + "create_cpp": 0.07547678053379059, + "file_setup": 0.14934508129954338, + "compile_cpp": 4.617635540664196, + "create_r1cs": 0.02931075543165207, + "save_results": 0.016873102635145187, + "get_r1cs_info": 0.0006890222430229187, + "groth16_setup": 1.3961253017187119, + "export_verification_key": 1.3712206594645977, + "download_trusted_setup_file": 0.7798134870827198, + "solidity_contract_generation": 1.438829779624939 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M28.402718S", + "queue_time_sec": 28.402718, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ea863ded-6443-4297-8d21-7fe40e47d32b", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:29.344Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.094433S", + "compute_time_sec": 9.094433, + "compute_times": { + "total": 9.10303309559822, + "clean_up": 0.010377351194620132, + "create_cpp": 0.05704041197896004, + "file_setup": 0.039752084761857986, + "compile_cpp": 4.5882804952561855, + "create_r1cs": 0.02706821635365486, + "save_results": 0.004041947424411774, + "get_r1cs_info": 0.0005764663219451904, + "groth16_setup": 1.4465988241136074, + "export_verification_key": 1.498193196952343, + "download_trusted_setup_file": 0.0020663291215896606, + "solidity_contract_generation": 1.4285377003252506 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M28.434767S", + "queue_time_sec": 28.434767, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "43f31087-1987-4e15-95dc-a608d5a82546", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:27.479Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.305665S", + "compute_time_sec": 10.305665, + "compute_times": { + "total": 10.413043993059546, + "clean_up": 0.01399040361866355, + "create_cpp": 0.07035982515662909, + "file_setup": 0.14063861686736345, + "compile_cpp": 4.546684664674103, + "create_r1cs": 0.028325339313596487, + "save_results": 0.010998486075550318, + "get_r1cs_info": 0.0005886605940759182, + "groth16_setup": 1.5871446118690073, + "export_verification_key": 1.634239657316357, + "download_trusted_setup_file": 0.8202190091833472, + "solidity_contract_generation": 1.5590812619775534 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M30.225044S", + "queue_time_sec": 30.225044, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6c4ba7bf-32c4-442c-b31c-31c896f9ae85", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:27.364Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.698314S", + "compute_time_sec": 9.698314, + "compute_times": { + "total": 9.705551906023175, + "clean_up": 0.021276818122714758, + "create_cpp": 0.05730678094550967, + "file_setup": 0.03649699268862605, + "compile_cpp": 4.708389349281788, + "create_r1cs": 0.030472892802208662, + "save_results": 0.004397203214466572, + "get_r1cs_info": 0.0008691279217600822, + "groth16_setup": 1.710043990984559, + "export_verification_key": 1.622103386092931, + "download_trusted_setup_file": 0.0034628822468221188, + "solidity_contract_generation": 1.510178068652749 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M21.255265S", + "queue_time_sec": 21.255265, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "81a36891-6809-4774-90cb-4211e9c5cbfd", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:27.324Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.210948S", + "compute_time_sec": 9.210948, + "compute_times": { + "total": 9.219696637243032, + "clean_up": 0.012776065617799759, + "create_cpp": 0.05699462443590164, + "file_setup": 0.03945335000753403, + "compile_cpp": 4.685839295387268, + "create_r1cs": 0.029251202940940857, + "save_results": 0.005126651376485825, + "get_r1cs_info": 0.0007720626890659332, + "groth16_setup": 1.4343496821820736, + "export_verification_key": 1.489438358694315, + "download_trusted_setup_file": 0.0030554644763469696, + "solidity_contract_generation": 1.4620327539741993 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M20.497085S", + "queue_time_sec": 20.497085, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "403dfb6b-d626-4a57-bb62-d3116348477c", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:27.319Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.175042S", + "compute_time_sec": 9.175042, + "compute_times": { + "total": 9.183534851763397, + "clean_up": 0.011141371913254261, + "create_cpp": 0.05671336781233549, + "file_setup": 0.03004106180742383, + "compile_cpp": 4.653775123413652, + "create_r1cs": 0.027213362976908684, + "save_results": 0.004314098972827196, + "get_r1cs_info": 0.0006822007708251476, + "groth16_setup": 1.4777755592949688, + "export_verification_key": 1.5040197470225394, + "download_trusted_setup_file": 0.0029390938580036163, + "solidity_contract_generation": 1.4130500159226358 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M11.398720S", + "queue_time_sec": 11.39872, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "bc80e117-9b6a-4488-91e0-cf173ff86ba7", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:27.229Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "sdk-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.311010S", + "compute_time_sec": 9.31101, + "compute_times": { + "total": 9.319812651723623, + "clean_up": 0.011324014514684677, + "create_cpp": 0.057756099849939346, + "file_setup": 0.0404469259083271, + "compile_cpp": 4.731784574687481, + "create_r1cs": 0.028865016996860504, + "save_results": 0.004909351468086243, + "get_r1cs_info": 0.0007922351360321045, + "groth16_setup": 1.4483194835484028, + "export_verification_key": 1.477173574268818, + "download_trusted_setup_file": 0.002990592271089554, + "solidity_contract_generation": 1.51463782787323 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M10.508655S", + "queue_time_sec": 10.508655, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "bbc2209e-f403-4206-8b25-5095c2f4e840", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:27.143Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.211413S", + "compute_time_sec": 9.211413, + "compute_times": { + "total": 9.220092054456472, + "clean_up": 0.012299258261919022, + "create_cpp": 0.0659804418683052, + "file_setup": 0.04178190976381302, + "compile_cpp": 4.720022294670343, + "create_r1cs": 0.02683413401246071, + "save_results": 0.01673327013850212, + "get_r1cs_info": 0.0007830262184143066, + "groth16_setup": 1.4412461444735527, + "export_verification_key": 1.4419135004281998, + "download_trusted_setup_file": 0.003035079687833786, + "solidity_contract_generation": 1.4488594830036163 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.559872S", + "queue_time_sec": 0.559872, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d6e87b0c-811c-4b49-9b0d-cc9c89369c60", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:27.139Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.281904S", + "compute_time_sec": 10.281904, + "compute_times": { + "total": 10.289068803191185, + "clean_up": 0.007799143902957439, + "create_cpp": 0.06638590386137366, + "file_setup": 0.02974561508744955, + "compile_cpp": 4.892398490104824, + "create_r1cs": 0.029133875854313374, + "save_results": 0.011243985034525394, + "get_r1cs_info": 0.0008647660724818707, + "groth16_setup": 1.3819010220468044, + "export_verification_key": 1.4853795138187706, + "download_trusted_setup_file": 0.953129094094038, + "solidity_contract_generation": 1.4306797003373504 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M00.568215S", + "queue_time_sec": 0.568215, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "a681cc07-6758-40b3-9705-756630baad6d", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-18T14:12:43.860Z", + "meta": {}, + "num_proofs": 2, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.335539S", + "compute_time_sec": 1.335539, + "compute_times": { + "total": 1.3448769599199295, + "clean_up": 0.06142912805080414, + "file_setup": 0.0445174016058445, + "nargo_checks": 0.577319111675024, + "save_results": 0.012926913797855377, + "solidity_contract_generation": 0.6480052843689919 + }, + "file_size": 716, + "queue_time": "P0DT00H00M00.517932S", + "queue_time_sec": 0.517932, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "d45df125-14b4-4e04-9853-ee74a1fab7fe", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-16T00:06:24.884Z", + "meta": {}, + "num_proofs": 2, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M05.332981S", + "compute_time_sec": 5.332981, + "compute_times": { + "total": 5.338791850022972, + "clean_up": 4.3510633278638124, + "file_setup": 0.02657062280923128, + "nargo_checks": 0.46227254904806614, + "save_results": 0.004865624010562897, + "solidity_contract_generation": 0.4935983009636402 + }, + "file_size": 1285, + "queue_time": "P0DT00H00M00.937229S", + "queue_time_sec": 0.937229, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "b0c4665a-01be-418d-bcf0-28b824faf251", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-16T00:05:36.787Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "main" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M03.394965S", + "compute_time_sec": 3.394965, + "compute_times": { + "total": 3.40187019854784, + "clean_up": 2.1594989113509655, + "file_setup": 0.03134112060070038, + "nargo_checks": 0.5169066376984119, + "save_results": 0.013889234513044357, + "solidity_contract_generation": 0.6795457378029823 + }, + "file_size": 1285, + "queue_time": "P0DT00H00M00.568996S", + "queue_time_sec": 0.568996, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "2537d1d6-0e58-40fe-b377-8cd41a2bb190", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-16T00:04:36.869Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "ews-add-bug-then-fix-it" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.998621S", + "compute_time_sec": 1.998621, + "compute_times": { + "total": 2.0043763401918113, + "clean_up": 0.9484327929094434, + "file_setup": 0.029500093776732683, + "nargo_checks": 0.4901977120898664, + "save_results": 0.004730392247438431, + "solidity_contract_generation": 0.531058550812304 + }, + "file_size": 1286, + "queue_time": "P0DT00H00M01.018264S", + "queue_time_sec": 1.018264, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "be0acedc-9451-4c9d-a19b-243d4a275b53", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-16T00:03:14.596Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Failed", + "tags": [ + "ews-add-bug-then-fix-it" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.124574S", + "compute_time_sec": 2.124574, + "compute_times": { + "total": 0.5014128349721432, + "file_setup": 0.041081301867961884, + "nargo_checks": 0.4596608690917492 + }, + "file_size": 1308, + "queue_time": "P0DT00H00M00.602582S", + "queue_time_sec": 0.602582, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: nargo-v0.23.0 info stdout: stderr: warning: unused variable Y\n ┌─ /workspace/circuits/be0acedc-9451-4c9d-a19b-243d4a275b53_1710547395198915/code/src/main.nr:2:19\n │\n2 │ fn main(X: Field, Y: pub Field) {\n │ - unused variable \n │\n\nerror: cannot find `Z` in this scope \n ┌─ /workspace/circuits/be0acedc-9451-4c9d-a19b-243d4a275b53_1710547395198915/code/src/main.nr:5:17\n │\n5 │ assert(X == Z);\n │ - not found in this scope\n │\n\nAborting due to 1 previous error\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.23.0" + }, + { + "circuit_id": "cf27d62c-d4ae-4bd5-9f83-1d77b726dea0", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-15T23:53:56.215Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "ews-add-bug-then-fix-it" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M05.887696S", + "compute_time_sec": 5.887696, + "compute_times": { + "total": 5.893388924188912, + "clean_up": 4.886199481319636, + "file_setup": 0.042362162843346596, + "nargo_checks": 0.4607020281255245, + "save_results": 0.004635232035070658, + "solidity_contract_generation": 0.49903516471385956 + }, + "file_size": 1292, + "queue_time": "P0DT00H00M01.034311S", + "queue_time_sec": 1.034311, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "41f9e8a6-ab84-456a-941d-92742f48abef", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-15T23:52:40.302Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Failed", + "tags": [ + "ews-add-bug-then-fix-it" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.625961S", + "compute_time_sec": 2.625961, + "compute_times": { + "total": 0.5365241914987564, + "file_setup": 0.0927840918302536, + "nargo_checks": 0.4430789351463318 + }, + "file_size": 1307, + "queue_time": "P0DT00H00M00.574164S", + "queue_time_sec": 0.574164, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: nargo-v0.23.0 info stdout: stderr: warning: unused variable Y\n ┌─ /workspace/circuits/41f9e8a6-ab84-456a-941d-92742f48abef_1710546760875958/code/src/main.nr:2:19\n │\n2 │ fn main(X: Field, Y: pub Field) {\n │ - unused variable \n │\n\nerror: cannot find `Z` in this scope \n ┌─ /workspace/circuits/41f9e8a6-ab84-456a-941d-92742f48abef_1710546760875958/code/src/main.nr:5:17\n │\n5 │ assert(X == Z);\n │ - not found in this scope\n │\n\nAborting due to 1 previous error\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.23.0" + }, + { + "circuit_id": "50397057-37a4-4330-b0f4-f14e72287137", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-15T23:47:28.928Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "ews-add-bug-then-fix-it" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.955221S", + "compute_time_sec": 1.955221, + "compute_times": { + "total": 1.9604994058609009, + "clean_up": 0.9643332809209824, + "file_setup": 0.0379217891022563, + "nargo_checks": 0.45019666012376547, + "save_results": 0.004803900141268969, + "solidity_contract_generation": 0.5028517027385533 + }, + "file_size": 1294, + "queue_time": "P0DT00H00M00.947069S", + "queue_time_sec": 0.947069, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "89b0e875-9b39-4bde-8b6b-120ff97642ff", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-15T23:46:00.949Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Failed", + "tags": [ + "ews-add-bug-then-fix-it" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.587073S", + "compute_time_sec": 2.587073, + "compute_times": { + "total": 0.8602200485765934, + "file_setup": 0.3412007801234722, + "nargo_checks": 0.5182558670639992 + }, + "file_size": 1298, + "queue_time": "P0DT00H00M00.614770S", + "queue_time_sec": 0.61477, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: nargo-v0.23.0 info stdout: stderr: warning: unused variable Y\n ┌─ /workspace/circuits/89b0e875-9b39-4bde-8b6b-120ff97642ff_1710546361563997/code/src/main.nr:2:19\n │\n2 │ fn main(X: Field, Y: pub Field) {\n │ - unused variable \n │\n\nerror: cannot find `Z` in this scope \n ┌─ /workspace/circuits/89b0e875-9b39-4bde-8b6b-120ff97642ff_1710546361563997/code/src/main.nr:5:17\n │\n5 │ assert(X == Z);\n │ - not found in this scope\n │\n\nAborting due to 1 previous error\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.23.0" + }, + { + "circuit_id": "364a0f03-986c-4d00-8630-43b62e2cf6e5", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-15T23:37:49.839Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "ews-add-bug-then-fix" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.579560S", + "compute_time_sec": 2.57956, + "compute_times": { + "total": 2.585219926200807, + "clean_up": 1.5475464779883623, + "file_setup": 0.02537884982302785, + "nargo_checks": 0.48431322211399674, + "save_results": 0.004537166096270084, + "solidity_contract_generation": 0.5230312100611627 + }, + "file_size": 1295, + "queue_time": "P0DT00H00M00.942253S", + "queue_time_sec": 0.942253, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "95798f52-f0f7-41e7-a4d8-9788c4f30339", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-15T23:32:37.213Z", + "meta": {}, + "num_proofs": 3, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "ews-add-bug-then-fix" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.515330S", + "compute_time_sec": 1.51533, + "compute_times": { + "total": 1.5228322558104992, + "clean_up": 0.2920541651546955, + "file_setup": 0.037235140800476074, + "nargo_checks": 0.5503607206046581, + "save_results": 0.014032609760761261, + "solidity_contract_generation": 0.6282044015824795 + }, + "file_size": 1287, + "queue_time": "P0DT00H00M00.600073S", + "queue_time_sec": 0.600073, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "048618bd-1267-4246-9ab3-5a21100068b7", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-15T23:27:50.424Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "ews-add-bug-then-fix" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M03.183149S", + "compute_time_sec": 3.183149, + "compute_times": { + "total": 3.188678659964353, + "clean_up": 2.1827749628573656, + "file_setup": 0.027360782958567142, + "nargo_checks": 0.45093528367578983, + "save_results": 0.004683893173933029, + "solidity_contract_generation": 0.5225234641693532 + }, + "file_size": 1288, + "queue_time": "P0DT00H00M00.950660S", + "queue_time_sec": 0.95066, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "404ddf1f-b808-4064-b182-d5d688c9bba4", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-15T23:26:34.095Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Failed", + "tags": [ + "ews-add-bug-then-fix" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.360792S", + "compute_time_sec": 1.360792, + "compute_times": { + "total": 0.4829430617392063, + "file_setup": 0.05813189595937729, + "nargo_checks": 0.4238644689321518 + }, + "file_size": 1304, + "queue_time": "P0DT00H00M00.614997S", + "queue_time_sec": 0.614997, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: nargo-v0.23.0 info stdout: stderr: warning: unused variable Y\n ┌─ /workspace/circuits/404ddf1f-b808-4064-b182-d5d688c9bba4_1710545194710088/code/src/main.nr:2:19\n │\n2 │ fn main(X: Field, Y: pub Field) {\n │ - unused variable \n │\n\nerror: cannot find `Z` in this scope \n ┌─ /workspace/circuits/404ddf1f-b808-4064-b182-d5d688c9bba4_1710545194710088/code/src/main.nr:5:17\n │\n5 │ assert(X == Z);\n │ - not found in this scope\n │\n\nAborting due to 1 previous error\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.23.0" + }, + { + "circuit_id": "f9273258-c4cb-480c-b836-fcbb845c0229", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-15T22:31:22.227Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Failed", + "tags": [ + "ews-add-bug-and-fix" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.531222S", + "compute_time_sec": 0.531222, + "compute_times": { + "total": 0.5279519706964493, + "file_setup": 0.03068944811820984, + "nargo_checks": 0.49658747017383575 + }, + "file_size": 1311, + "queue_time": "P0DT00H00M00.561600S", + "queue_time_sec": 0.5616, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: nargo-v0.23.0 info stdout: stderr: warning: unused variable Y\n ┌─ /workspace/circuits/f9273258-c4cb-480c-b836-fcbb845c0229_1710541882788055/code/src/main.nr:2:19\n │\n2 │ fn main(X: Field, Y: pub Field) {\n │ - unused variable \n │\n\nerror: cannot find `Z` in this scope \n ┌─ /workspace/circuits/f9273258-c4cb-480c-b836-fcbb845c0229_1710541882788055/code/src/main.nr:5:17\n │\n5 │ assert(X == Z); // This is a bug!\n │ - not found in this scope\n │\n\nAborting due to 1 previous error\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.23.0" + }, + { + "circuit_id": "fd71e034-52b2-4568-b64f-9f340c3e8386", + "circuit_name": "is-equal", + "project_name": "is-equal", + "circuit_type": "noir", + "date_created": "2024-03-15T16:26:22.084Z", + "meta": {}, + "num_proofs": 25, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.970518S", + "compute_time_sec": 0.970518, + "compute_times": { + "total": 0.9767654938623309, + "clean_up": 0.010434275958687067, + "file_setup": 0.02777653792873025, + "nargo_checks": 0.4504653010517359, + "save_results": 0.004922701045870781, + "solidity_contract_generation": 0.48277214681729674 + }, + "file_size": 724, + "queue_time": "P0DT00H00M00.992179S", + "queue_time_sec": 0.992179, + "uploaded_file_name": "is-equal.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "is_equal", + "noir_version": "0.23.0" + }, + { + "circuit_id": "8e6af772-b336-4a05-9a33-8dc31db50676", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-14T20:36:55.486Z", + "meta": {}, + "num_proofs": 3, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.523784S", + "compute_time_sec": 8.523784, + "compute_times": { + "total": 8.529641860164702, + "clean_up": 0.13199715735390782, + "create_cpp": 0.0558135979808867, + "file_setup": 0.07662083394825459, + "compile_cpp": 4.545625839848071, + "create_r1cs": 0.026279885321855545, + "save_results": 0.005452707875519991, + "get_r1cs_info": 0.000342722050845623, + "groth16_setup": 1.2112812278792262, + "export_verification_key": 1.2650951412506402, + "download_trusted_setup_file": 0.0013319998979568481, + "solidity_contract_generation": 1.209401108790189 + }, + "file_size": 1662699, + "queue_time": "P0DT00H00M00.916345S", + "queue_time_sec": 0.916345, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.939Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.691729S", + "compute_time_sec": 9.691729, + "compute_times": { + "total": 9.698325637727976, + "clean_up": 0.046641225926578045, + "create_cpp": 0.04586349707096815, + "file_setup": 0.03466500248759985, + "compile_cpp": 4.734695943072438, + "create_r1cs": 0.01605131570249796, + "save_results": 0.008689278736710548, + "get_r1cs_info": 0.0004518600180745125, + "groth16_setup": 1.6800644360482693, + "export_verification_key": 1.6780370585620403, + "download_trusted_setup_file": 0.0014321627095341682, + "solidity_contract_generation": 1.4514362132176757 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M00.474052S", + "queue_time_sec": 0.474052, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.920Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.603959S", + "compute_time_sec": 8.603959, + "compute_times": { + "total": 8.611909189727157, + "clean_up": 0.05220539681613445, + "create_cpp": 0.05067062610760331, + "file_setup": 0.038000084925442934, + "compile_cpp": 4.637983243912458, + "create_r1cs": 0.014208190143108368, + "save_results": 0.0024204719811677933, + "get_r1cs_info": 0.0003376118838787079, + "groth16_setup": 1.2754370658658445, + "export_verification_key": 1.2892165738157928, + "download_trusted_setup_file": 0.001250759232789278, + "solidity_contract_generation": 1.2496181591413915 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M09.288692S", + "queue_time_sec": 9.288692, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.828Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.905165S", + "compute_time_sec": 9.905165, + "compute_times": { + "total": 9.918926574289799, + "clean_up": 0.05230675730854273, + "create_cpp": 0.045606729574501514, + "file_setup": 0.02679374162107706, + "compile_cpp": 4.953503333963454, + "create_r1cs": 0.015227718278765678, + "save_results": 0.008131230250000954, + "get_r1cs_info": 0.00043175462633371353, + "groth16_setup": 1.7147084949538112, + "export_verification_key": 1.678258053958416, + "download_trusted_setup_file": 0.0014104470610618591, + "solidity_contract_generation": 1.4150088308379054 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M00.485820S", + "queue_time_sec": 0.48582, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5d32cb58-d551-44f2-a7ba-f3f1042a8722", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.762Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.879936S", + "compute_time_sec": 9.879936, + "compute_times": { + "total": 9.886854749172926, + "clean_up": 0.037875108420848846, + "create_cpp": 0.045085612684488297, + "file_setup": 0.02763216197490692, + "compile_cpp": 4.9910760167986155, + "create_r1cs": 0.015627074986696243, + "save_results": 0.008492609485983849, + "get_r1cs_info": 0.00048466306179761887, + "groth16_setup": 1.714037835597992, + "export_verification_key": 1.673197460360825, + "download_trusted_setup_file": 0.0012773266062140465, + "solidity_contract_generation": 1.3717909315600991 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M00.485382S", + "queue_time_sec": 0.485382, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f680f94f-962d-40ff-af4e-f93157ceea48", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.746Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "browser-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.345263S", + "compute_time_sec": 9.345263, + "compute_times": { + "total": 9.351605591364205, + "clean_up": 0.05285029113292694, + "create_cpp": 0.045495557598769665, + "file_setup": 0.02658266667276621, + "compile_cpp": 4.7376435389742255, + "create_r1cs": 0.014407068490982056, + "save_results": 0.009819619357585907, + "get_r1cs_info": 0.0004047444090247154, + "groth16_setup": 1.5581415686756372, + "export_verification_key": 1.4666384868323803, + "download_trusted_setup_file": 0.0015744948759675026, + "solidity_contract_generation": 1.4376487005501986 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M00.477716S", + "queue_time_sec": 0.477716, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.659Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "sdk-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.375539S", + "compute_time_sec": 9.375539, + "compute_times": { + "total": 9.381464813835919, + "clean_up": 0.05025594122707844, + "create_cpp": 0.04334672819823027, + "file_setup": 0.025018360465765, + "compile_cpp": 4.648743998259306, + "create_r1cs": 0.014843899756669998, + "save_results": 0.00782844889909029, + "get_r1cs_info": 0.00040088966488838196, + "groth16_setup": 1.3209671378135681, + "export_verification_key": 1.6962075987830758, + "download_trusted_setup_file": 0.001315578818321228, + "solidity_contract_generation": 1.572251359000802 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M00.522243S", + "queue_time_sec": 0.522243, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "15eeccf5-0331-47eb-bbb8-85de2cc64967", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.618Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.307601S", + "compute_time_sec": 9.307601, + "compute_times": { + "total": 9.314248332753778, + "clean_up": 0.02926310896873474, + "create_cpp": 0.04471412394195795, + "file_setup": 0.03804492764174938, + "compile_cpp": 4.608692822046578, + "create_r1cs": 0.014758244156837463, + "save_results": 0.008313399739563465, + "get_r1cs_info": 0.0004539685323834419, + "groth16_setup": 1.3243383038789034, + "export_verification_key": 1.6189338900148869, + "download_trusted_setup_file": 0.001455250196158886, + "solidity_contract_generation": 1.6248986180871725 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.472485S", + "queue_time_sec": 0.472485, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6621575b-2045-4338-8de5-8ab673bf7717", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.569Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.145998S", + "compute_time_sec": 9.145998, + "compute_times": { + "total": 9.15299117192626, + "clean_up": 0.029666390269994736, + "create_cpp": 0.0658210851252079, + "file_setup": 0.03178653493523598, + "compile_cpp": 4.756836257874966, + "create_r1cs": 0.026396218687295914, + "save_results": 0.01597248762845993, + "get_r1cs_info": 0.0003932081162929535, + "groth16_setup": 1.4214057549834251, + "export_verification_key": 1.4400159232318401, + "download_trusted_setup_file": 0.0015518292784690857, + "solidity_contract_generation": 1.3624810725450516 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.685611S", + "queue_time_sec": 0.685611, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "7e823c8e-e303-426c-b6d6-9edf3a3d754e", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.496Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.573115S", + "compute_time_sec": 8.573115, + "compute_times": { + "total": 8.579251876100898, + "clean_up": 0.03129182104021311, + "create_cpp": 0.04595769103616476, + "file_setup": 0.030209324788302183, + "compile_cpp": 4.6374000972136855, + "create_r1cs": 0.04609727067872882, + "save_results": 0.0079621197655797, + "get_r1cs_info": 0.0005209962837398052, + "groth16_setup": 1.1605738401412964, + "export_verification_key": 1.2923613898456097, + "download_trusted_setup_file": 0.001424906775355339, + "solidity_contract_generation": 1.3250793442130089 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M00.796402S", + "queue_time_sec": 0.796402, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.459Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M15.009296S", + "compute_time_sec": 15.009296, + "compute_times": { + "total": 15.102583220694214, + "clean_up": 0.04279625462368131, + "create_cpp": 0.07173184677958488, + "file_setup": 0.12286364380270243, + "compile_cpp": 4.595611970406026, + "create_r1cs": 0.014224277809262276, + "save_results": 0.0057679093442857265, + "get_r1cs_info": 0.00045422976836562157, + "groth16_setup": 1.2457834123633802, + "export_verification_key": 1.1942963958717883, + "download_trusted_setup_file": 6.611268437001854, + "solidity_contract_generation": 1.197091506794095 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.498274S", + "queue_time_sec": 0.498274, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f3089b5b-27f5-4dfd-918a-4480596ccde2", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.442Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.789405S", + "compute_time_sec": 10.789405, + "compute_times": { + "total": 10.882488801609725, + "clean_up": 0.04104336490854621, + "create_cpp": 0.052224196027964354, + "file_setup": 0.11650297930464149, + "compile_cpp": 4.446984312962741, + "create_r1cs": 0.01346581382676959, + "save_results": 0.006408482789993286, + "get_r1cs_info": 0.0003145672380924225, + "groth16_setup": 1.3689304389990866, + "export_verification_key": 1.3372940109111369, + "download_trusted_setup_file": 2.2383047258481383, + "solidity_contract_generation": 1.2602891041897237 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M00.512784S", + "queue_time_sec": 0.512784, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f7eb912b-520d-49ef-801d-4b3a161c81b7", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.323Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.101823S", + "compute_time_sec": 11.101823, + "compute_times": { + "total": 11.179332848172635, + "clean_up": 0.0485866479575634, + "create_cpp": 0.052952506113797426, + "file_setup": 0.09853811888024211, + "compile_cpp": 4.571448627859354, + "create_r1cs": 0.014488603919744492, + "save_results": 0.005894129164516926, + "get_r1cs_info": 0.0004602782428264618, + "groth16_setup": 1.4362294389866292, + "export_verification_key": 1.3798753838054836, + "download_trusted_setup_file": 2.1441893419250846, + "solidity_contract_generation": 1.4259786889888346 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.609665S", + "queue_time_sec": 0.609665, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c4f88a86-d9ec-4b91-bd80-cfb31b7a5bfc", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:45.642Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "browser-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.929838S", + "compute_time_sec": 10.929838, + "compute_times": { + "total": 11.007619581185281, + "clean_up": 0.051205127499997616, + "create_cpp": 0.05483011808246374, + "file_setup": 0.10308713093400002, + "compile_cpp": 4.6461376613006, + "create_r1cs": 0.014528287574648857, + "save_results": 0.008079186081886292, + "get_r1cs_info": 0.0003790585324168205, + "groth16_setup": 1.4076873622834682, + "export_verification_key": 1.4883546605706215, + "download_trusted_setup_file": 1.7322950633242726, + "solidity_contract_generation": 1.5002469010651112 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M00.481129S", + "queue_time_sec": 0.481129, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "7cca8edc-50d3-47a7-8e3a-74ca373b3cd4", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.896Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.231365S", + "compute_time_sec": 11.231365, + "compute_times": { + "total": 11.307692172005773, + "clean_up": 0.008774058893322945, + "create_cpp": 0.053523180074989796, + "file_setup": 0.09832879714667797, + "compile_cpp": 4.598241847008467, + "create_r1cs": 0.014149329625070095, + "save_results": 0.007395447231829166, + "get_r1cs_info": 0.0003755558282136917, + "groth16_setup": 1.5397319523617625, + "export_verification_key": 1.63625568151474, + "download_trusted_setup_file": 1.8067116104066372, + "solidity_contract_generation": 1.543387576006353 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.476676S", + "queue_time_sec": 0.476676, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "b8e1fce0-8f61-425f-bcb8-934e7d40a7fe", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.868Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.883477S", + "compute_time_sec": 10.883477, + "compute_times": { + "total": 10.96161946002394, + "clean_up": 0.008177496492862701, + "create_cpp": 0.05455693602561951, + "file_setup": 0.09822729509323835, + "compile_cpp": 5.32946053519845, + "create_r1cs": 0.023223165422677994, + "save_results": 0.007872683927416801, + "get_r1cs_info": 0.0007433714345097542, + "groth16_setup": 1.232159056700766, + "export_verification_key": 1.1852782787755132, + "download_trusted_setup_file": 1.8125058794394135, + "solidity_contract_generation": 1.2086354764178395 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M05.594399S", + "queue_time_sec": 5.594399, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f687f41b-05ef-4b71-859f-89c235df7f85", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.751Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.305050S", + "compute_time_sec": 11.30505, + "compute_times": { + "total": 11.381858820095658, + "clean_up": 0.006945925764739513, + "create_cpp": 0.0647741137072444, + "file_setup": 0.10372947435826063, + "compile_cpp": 4.63662054669112, + "create_r1cs": 0.014084351249039173, + "save_results": 0.006675968877971172, + "get_r1cs_info": 0.0004263361915946007, + "groth16_setup": 1.5637168493121862, + "export_verification_key": 1.5961499894037843, + "download_trusted_setup_file": 1.842420045286417, + "solidity_contract_generation": 1.5456946399062872 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.503683S", + "queue_time_sec": 0.503683, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "66b82507-33a9-4ad4-bc6b-d25ca1e81640", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.750Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.268466S", + "compute_time_sec": 11.268466, + "compute_times": { + "total": 11.345806522294879, + "clean_up": 0.011073347181081772, + "create_cpp": 0.05416189879179001, + "file_setup": 0.1187604358419776, + "compile_cpp": 4.553891937248409, + "create_r1cs": 0.014190373942255974, + "save_results": 0.007122533395886421, + "get_r1cs_info": 0.0004680706188082695, + "groth16_setup": 1.5284202648326755, + "export_verification_key": 1.6278462577611208, + "download_trusted_setup_file": 1.8715678034350276, + "solidity_contract_generation": 1.5577266169711947 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.488628S", + "queue_time_sec": 0.488628, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "23aa50f4-3b3b-45da-829f-d5d66e4c4d11", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.711Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "sdk-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.210817S", + "compute_time_sec": 11.210817, + "compute_times": { + "total": 11.29248421639204, + "clean_up": 0.020679300650954247, + "create_cpp": 0.05491482466459274, + "file_setup": 0.10212271381169558, + "compile_cpp": 4.628723526373506, + "create_r1cs": 0.014838848263025284, + "save_results": 0.008825177326798439, + "get_r1cs_info": 0.00037500355392694473, + "groth16_setup": 1.5391744449734688, + "export_verification_key": 1.6044446052983403, + "download_trusted_setup_file": 1.8482900699600577, + "solidity_contract_generation": 1.4694783054292202 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M00.483270S", + "queue_time_sec": 0.48327, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1adbe754-bf55-4bc4-840b-b1a0c6211bba", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.631Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.272581S", + "compute_time_sec": 9.272581, + "compute_times": { + "total": 9.281027846038342, + "clean_up": 0.010583236813545227, + "create_cpp": 0.06096075102686882, + "file_setup": 0.06766684353351593, + "compile_cpp": 4.783785995095968, + "create_r1cs": 0.028285864740610123, + "save_results": 0.01832101121544838, + "get_r1cs_info": 0.0007419697940349579, + "groth16_setup": 1.4409223012626171, + "export_verification_key": 1.4080555588006973, + "download_trusted_setup_file": 0.003306623548269272, + "solidity_contract_generation": 1.4575624987483025 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M00.526207S", + "queue_time_sec": 0.526207, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "47dcd9c7-ad4c-442b-9749-1c4a223e9c41", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.622Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.295136S", + "compute_time_sec": 8.295136, + "compute_times": { + "total": 8.30126025620848, + "clean_up": 0.012490132823586464, + "create_cpp": 0.04419650696218014, + "file_setup": 0.0244809091091156, + "compile_cpp": 4.626262218691409, + "create_r1cs": 0.014991610310971737, + "save_results": 0.007189788389950991, + "get_r1cs_info": 0.00040078582242131233, + "groth16_setup": 1.1928394669666886, + "export_verification_key": 1.1747048920951784, + "download_trusted_setup_file": 0.0014825090765953064, + "solidity_contract_generation": 1.2017690567299724 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M05.783183S", + "queue_time_sec": 5.783183, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f6b090b6-cabd-49a6-8fd9-4a182d81b78e", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:54.727Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.085123S", + "compute_time_sec": 8.085123, + "compute_times": { + "total": 8.09137938497588, + "clean_up": 0.007791096810251474, + "create_cpp": 0.044438749086111784, + "file_setup": 0.024869628716260195, + "compile_cpp": 4.385270964819938, + "create_r1cs": 0.013867777306586504, + "save_results": 0.002616934012621641, + "get_r1cs_info": 0.00037747714668512344, + "groth16_setup": 1.2033112640492618, + "export_verification_key": 1.1794444089755416, + "download_trusted_setup_file": 0.0012541408650577068, + "solidity_contract_generation": 1.2276925309561193 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M48.713112S", + "queue_time_sec": 48.713112, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1d731595-c5f5-45c2-8c8a-74da993e6e82", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:54.698Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.356818S", + "compute_time_sec": 9.356818, + "compute_times": { + "total": 9.365758311003447, + "clean_up": 0.012013569474220276, + "create_cpp": 0.05509437248110771, + "file_setup": 0.04398589953780174, + "compile_cpp": 4.733264245092869, + "create_r1cs": 0.03983578085899353, + "save_results": 0.0039914920926094055, + "get_r1cs_info": 0.0008755624294281006, + "groth16_setup": 1.5458043776452541, + "export_verification_key": 1.5154130905866623, + "download_trusted_setup_file": 0.0033237673342227936, + "solidity_contract_generation": 1.4115587584674358 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M40.166302S", + "queue_time_sec": 40.166302, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "471011f8-5b73-487d-b681-cde9c96bf6cf", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:54.637Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.094395S", + "compute_time_sec": 8.094395, + "compute_times": { + "total": 8.100875509902835, + "clean_up": 0.04136878298595548, + "create_cpp": 0.04349753214046359, + "file_setup": 0.026510909665375948, + "compile_cpp": 4.416802708990872, + "create_r1cs": 0.014031601138412952, + "save_results": 0.00268988823518157, + "get_r1cs_info": 0.0004020840860903263, + "groth16_setup": 1.2034661802463233, + "export_verification_key": 1.1931509468704462, + "download_trusted_setup_file": 0.0012740916572511196, + "solidity_contract_generation": 1.1572514278814197 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M37.935772S", + "queue_time_sec": 37.935772, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ca8fd41d-f06c-44a6-a107-14aa6dd9ecf7", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:54.599Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.071530S", + "compute_time_sec": 9.07153, + "compute_times": { + "total": 9.079165190458298, + "clean_up": 0.0193355530500412, + "create_cpp": 0.05889047309756279, + "file_setup": 0.0320410318672657, + "compile_cpp": 4.729198798537254, + "create_r1cs": 0.026881281286478043, + "save_results": 0.005445607006549835, + "get_r1cs_info": 0.0007509514689445496, + "groth16_setup": 1.433782622218132, + "export_verification_key": 1.3903879560530186, + "download_trusted_setup_file": 0.0030304640531539917, + "solidity_contract_generation": 1.3787178322672844 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M30.148027S", + "queue_time_sec": 30.148027, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d59433ae-ab32-4660-b9e7-55cc83c769ba", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.488Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.343632S", + "compute_time_sec": 8.343632, + "compute_times": { + "total": 8.35001930873841, + "clean_up": 0.007048632018268108, + "create_cpp": 0.04429081408306956, + "file_setup": 0.026038472075015306, + "compile_cpp": 4.664958589244634, + "create_r1cs": 0.01457917457446456, + "save_results": 0.0031841211020946503, + "get_r1cs_info": 0.0003963680937886238, + "groth16_setup": 1.1928057740442455, + "export_verification_key": 1.196701374836266, + "download_trusted_setup_file": 0.0012594950385391712, + "solidity_contract_generation": 1.198316270019859 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M29.144473S", + "queue_time_sec": 29.144473, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "36805997-5a18-443e-9257-c7c755763dde", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.365Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.160020S", + "compute_time_sec": 9.16002, + "compute_times": { + "total": 9.166912835091352, + "clean_up": 0.01679837331175804, + "create_cpp": 0.06060396507382393, + "file_setup": 0.03646278753876686, + "compile_cpp": 4.784000992774963, + "create_r1cs": 0.027241531759500504, + "save_results": 0.004248317331075668, + "get_r1cs_info": 0.0007042139768600464, + "groth16_setup": 1.4266419857740402, + "export_verification_key": 1.362672533839941, + "download_trusted_setup_file": 0.003010723739862442, + "solidity_contract_generation": 1.4438144154846668 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M21.165635S", + "queue_time_sec": 21.165635, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d1a0a9ba-e043-44f0-99a8-fd5dff170035", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.359Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.236905S", + "compute_time_sec": 8.236905, + "compute_times": { + "total": 8.242964311037213, + "clean_up": 0.012127489317208529, + "create_cpp": 0.04317784681916237, + "file_setup": 0.032348338048905134, + "compile_cpp": 4.581387536134571, + "create_r1cs": 0.013678629882633686, + "save_results": 0.003174391109496355, + "get_r1cs_info": 0.00039021391421556473, + "groth16_setup": 1.1700614751316607, + "export_verification_key": 1.1969006708823144, + "download_trusted_setup_file": 0.00127820810303092, + "solidity_contract_generation": 1.1880456837825477 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M19.712185S", + "queue_time_sec": 19.712185, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "54ea40a5-484a-4f75-b90b-801c2029e5ff", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.302Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.349751S", + "compute_time_sec": 9.349751, + "compute_times": { + "total": 9.35859140008688, + "clean_up": 0.04139033704996109, + "create_cpp": 0.058571700006723404, + "file_setup": 0.04377163201570511, + "compile_cpp": 4.7014184929430485, + "create_r1cs": 0.030283328145742416, + "save_results": 0.0046038031578063965, + "get_r1cs_info": 0.0007254183292388916, + "groth16_setup": 1.5263193063437939, + "export_verification_key": 1.5056473389267921, + "download_trusted_setup_file": 0.0030246786773204803, + "solidity_contract_generation": 1.442214511334896 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M10.786668S", + "queue_time_sec": 10.786668, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ac715658-6a8a-4367-bd75-0a424786e519", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.239Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.180312S", + "compute_time_sec": 8.180312, + "compute_times": { + "total": 8.186462632846087, + "clean_up": 0.045027026906609535, + "create_cpp": 0.0433749882504344, + "file_setup": 0.03141862200573087, + "compile_cpp": 4.435339014977217, + "create_r1cs": 0.013826461043208838, + "save_results": 0.0033798501826822758, + "get_r1cs_info": 0.00041944393888115883, + "groth16_setup": 1.224611712154001, + "export_verification_key": 1.2071821950376034, + "download_trusted_setup_file": 0.0012525338679552078, + "solidity_contract_generation": 1.1802184996195138 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M10.326997S", + "queue_time_sec": 10.326997, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "603b8de8-6f35-4ec2-8d14-ef2aa169d207", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.217Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.303741S", + "compute_time_sec": 9.303741, + "compute_times": { + "total": 9.31076579540968, + "clean_up": 0.061482787132263184, + "create_cpp": 0.05447719618678093, + "file_setup": 0.031512293964624405, + "compile_cpp": 4.7843478843569756, + "create_r1cs": 0.025975871831178665, + "save_results": 0.03923590108752251, + "get_r1cs_info": 0.0007070451974868774, + "groth16_setup": 1.4105089977383614, + "export_verification_key": 1.4856252260506153, + "download_trusted_setup_file": 0.0032596364617347717, + "solidity_contract_generation": 1.4127150252461433 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.510621S", + "queue_time_sec": 0.510621, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "b049bcb2-0b00-4198-ab95-ec8e50de7d97", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.172Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "sdk-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.028980S", + "compute_time_sec": 8.02898, + "compute_times": { + "total": 8.035278150811791, + "clean_up": 0.01962502161040902, + "create_cpp": 0.04339481005445123, + "file_setup": 0.032647415064275265, + "compile_cpp": 4.4359240545891225, + "create_r1cs": 0.015615029260516167, + "save_results": 0.005886566359549761, + "get_r1cs_info": 0.000441152136772871, + "groth16_setup": 1.1131845200434327, + "export_verification_key": 1.1628971919417381, + "download_trusted_setup_file": 0.0014497428201138973, + "solidity_contract_generation": 1.2036623698659241 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M00.908491S", + "queue_time_sec": 0.908491, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0bcbb1d0-6b85-475d-8171-edf9e1080e40", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:05.009Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.126213S", + "compute_time_sec": 8.126213, + "compute_times": { + "total": 8.132407675962895, + "clean_up": 0.007584667764604092, + "create_cpp": 0.042764997109770775, + "file_setup": 0.026120834983885288, + "compile_cpp": 4.428840433247387, + "create_r1cs": 0.014064936898648739, + "save_results": 0.002591380849480629, + "get_r1cs_info": 0.0004473528824746609, + "groth16_setup": 1.2245488930493593, + "export_verification_key": 1.2121927668340504, + "download_trusted_setup_file": 0.0014441171661019325, + "solidity_contract_generation": 1.1712806271389127 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M41.945655S", + "queue_time_sec": 41.945655, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5af7d3a0-7d37-40fd-ae43-f0c0534c2abb", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:04.989Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.121498S", + "compute_time_sec": 10.121498, + "compute_times": { + "total": 10.192187146283686, + "clean_up": 0.007370655424892902, + "create_cpp": 0.05348123889416456, + "file_setup": 0.09328565560281277, + "compile_cpp": 4.610476811416447, + "create_r1cs": 0.013877511024475098, + "save_results": 0.008401993662118912, + "get_r1cs_info": 0.00035433657467365265, + "groth16_setup": 1.2056698258966208, + "export_verification_key": 1.309598419815302, + "download_trusted_setup_file": 1.6407124130055308, + "solidity_contract_generation": 1.2472198996692896 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M32.362941S", + "queue_time_sec": 32.362941, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "16c04ef9-9cca-4ec8-9970-4f731c4c14b2", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:04.951Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M12.708449S", + "compute_time_sec": 12.708449, + "compute_times": { + "total": 12.780335546471179, + "clean_up": 0.00712052546441555, + "create_cpp": 0.05351158231496811, + "file_setup": 0.10181075800210238, + "compile_cpp": 4.557366239838302, + "create_r1cs": 0.014364761300384998, + "save_results": 0.006636504083871841, + "get_r1cs_info": 0.0003865128383040428, + "groth16_setup": 1.2839274490252137, + "export_verification_key": 1.1864824369549751, + "download_trusted_setup_file": 4.378982369787991, + "solidity_contract_generation": 1.1881536152213812 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M31.606686S", + "queue_time_sec": 31.606686, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6ff777f6-9b50-4f6c-981d-521fafc84671", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:04.838Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.949829S", + "compute_time_sec": 7.949829, + "compute_times": { + "total": 7.955922733992338, + "clean_up": 0.007068471051752567, + "create_cpp": 0.04410888580605388, + "file_setup": 0.03530481783673167, + "compile_cpp": 4.332128805108368, + "create_r1cs": 0.013425733894109726, + "save_results": 0.002837574575096369, + "get_r1cs_info": 0.0003893752582371235, + "groth16_setup": 1.161221300251782, + "export_verification_key": 1.1779537368565798, + "download_trusted_setup_file": 0.0012618638575077057, + "solidity_contract_generation": 1.1798813971690834 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M31.787652S", + "queue_time_sec": 31.787652, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "95af3cd1-0e03-4eaa-8c53-9ebfa33bf8a0", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.781Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.360336S", + "compute_time_sec": 9.360336, + "compute_times": { + "total": 9.367515902966261, + "clean_up": 0.010363537818193436, + "create_cpp": 0.05697645619511604, + "file_setup": 0.03041290119290352, + "compile_cpp": 4.814989410340786, + "create_r1cs": 0.027097947895526886, + "save_results": 0.004793565720319748, + "get_r1cs_info": 0.0005631856620311737, + "groth16_setup": 1.5725701451301575, + "export_verification_key": 1.4042510092258453, + "download_trusted_setup_file": 0.001781608909368515, + "solidity_contract_generation": 1.4431796036660671 + }, + "file_size": 236699, + "queue_time": "P0DT00H00M31.558274S", + "queue_time_sec": 31.558274, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "57aac857-c3af-438c-baed-f67592f7e0b6", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.694Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.063800S", + "compute_time_sec": 8.0638, + "compute_times": { + "total": 8.0698571940884, + "clean_up": 0.041817264165729284, + "create_cpp": 0.042918319813907146, + "file_setup": 0.027425960171967745, + "compile_cpp": 4.428783264011145, + "create_r1cs": 0.013796785846352577, + "save_results": 0.003706465009599924, + "get_r1cs_info": 0.00041563110426068306, + "groth16_setup": 1.1387999886646867, + "export_verification_key": 1.1761264819651842, + "download_trusted_setup_file": 0.0012755142524838448, + "solidity_contract_generation": 1.194381969049573 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M23.279182S", + "queue_time_sec": 23.279182, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "8787776b-1d4e-4f64-b163-afbb70e6b767", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.635Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.481420S", + "compute_time_sec": 9.48142, + "compute_times": { + "total": 9.488476019352674, + "clean_up": 0.05146057903766632, + "create_cpp": 0.060663893818855286, + "file_setup": 0.04430835321545601, + "compile_cpp": 4.838594596832991, + "create_r1cs": 0.020446740090847015, + "save_results": 0.004841934889554977, + "get_r1cs_info": 0.0005115754902362823, + "groth16_setup": 1.4131469950079918, + "export_verification_key": 1.5755452923476696, + "download_trusted_setup_file": 0.0021246708929538727, + "solidity_contract_generation": 1.4762532263994217 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M21.172934S", + "queue_time_sec": 21.172934, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "48bb95d9-c534-4fe7-b124-425742bc9921", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.594Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.162530S", + "compute_time_sec": 8.16253, + "compute_times": { + "total": 8.168789067771286, + "clean_up": 0.03938836511224508, + "create_cpp": 0.044962076004594564, + "file_setup": 0.03627823106944561, + "compile_cpp": 4.3931147661060095, + "create_r1cs": 0.013748648576438427, + "save_results": 0.0029903058893978596, + "get_r1cs_info": 0.0004170541651546955, + "groth16_setup": 1.2192720943130553, + "export_verification_key": 1.1968067497946322, + "download_trusted_setup_file": 0.001256425864994526, + "solidity_contract_generation": 1.2201471300795674 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M12.596802S", + "queue_time_sec": 12.596802, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "aeabbcc8-f51b-447a-bdce-f26745134da4", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.539Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.395259S", + "compute_time_sec": 9.395259, + "compute_times": { + "total": 9.40173276886344, + "clean_up": 0.036699261516332626, + "create_cpp": 0.055065736174583435, + "file_setup": 0.03588276728987694, + "compile_cpp": 4.756860479712486, + "create_r1cs": 0.02753232792019844, + "save_results": 0.004547979682683945, + "get_r1cs_info": 0.0007234290242195129, + "groth16_setup": 1.5721957311034203, + "export_verification_key": 1.4162963964045048, + "download_trusted_setup_file": 0.003074031323194504, + "solidity_contract_generation": 1.4920402988791466 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M10.832412S", + "queue_time_sec": 10.832412, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "36dd6025-4eb3-4d05-8f90-f2c3f3a7a535", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.447Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.285888S", + "compute_time_sec": 9.285888, + "compute_times": { + "total": 9.293334130197763, + "clean_up": 0.14576196298003197, + "create_cpp": 0.0688214860856533, + "file_setup": 0.03694232553243637, + "compile_cpp": 4.733128450810909, + "create_r1cs": 0.026510365307331085, + "save_results": 0.015769515186548233, + "get_r1cs_info": 0.0007566735148429871, + "groth16_setup": 1.4665097445249557, + "export_verification_key": 1.3843789175152779, + "download_trusted_setup_file": 0.00330163910984993, + "solidity_contract_generation": 1.4105877801775932 + }, + "file_size": 236699, + "queue_time": "P0DT00H00M00.553921S", + "queue_time_sec": 0.553921, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5a788aec-2f48-426a-805f-cea70c7b517e", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.422Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.132105S", + "compute_time_sec": 8.132105, + "compute_times": { + "total": 8.138365669641644, + "clean_up": 0.04502389393746853, + "create_cpp": 0.044666612055152655, + "file_setup": 0.030826924834400415, + "compile_cpp": 4.406796374358237, + "create_r1cs": 0.014510322827845812, + "save_results": 0.006469338666647673, + "get_r1cs_info": 0.00039179716259241104, + "groth16_setup": 1.2137043341062963, + "export_verification_key": 1.1969101303257048, + "download_trusted_setup_file": 0.0014359885826706886, + "solidity_contract_generation": 1.1770805940032005 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M02.064952S", + "queue_time_sec": 2.064952, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "2ed76776-cacb-4a4e-8e1d-ee6bde20bef1", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:10.705Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.396318S", + "compute_time_sec": 11.396318, + "compute_times": { + "total": 11.470033745281398, + "clean_up": 0.00701205525547266, + "create_cpp": 0.05382066033780575, + "file_setup": 1.4752762140706182, + "compile_cpp": 4.674427920952439, + "create_r1cs": 0.014601892791688442, + "save_results": 0.006885666400194168, + "get_r1cs_info": 0.000477752648293972, + "groth16_setup": 1.1715044034644961, + "export_verification_key": 1.2684592045843601, + "download_trusted_setup_file": 1.6390948193147779, + "solidity_contract_generation": 1.1555112060159445 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M31.223842S", + "queue_time_sec": 31.223842, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "b43215d9-9873-4780-852e-7061f688bc52", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:10.562Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.443735S", + "compute_time_sec": 9.443735, + "compute_times": { + "total": 9.450845569372177, + "clean_up": 0.02927279844880104, + "create_cpp": 0.05816115811467171, + "file_setup": 0.15777237713336945, + "compile_cpp": 4.784576293081045, + "create_r1cs": 0.028225980699062347, + "save_results": 0.004189185798168182, + "get_r1cs_info": 0.0007221847772598267, + "groth16_setup": 1.4950053170323372, + "export_verification_key": 1.4608619846403599, + "download_trusted_setup_file": 0.0030181407928466797, + "solidity_contract_generation": 1.428341083228588 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M29.745647S", + "queue_time_sec": 29.745647, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "81114891-f37f-40fc-86cf-d5ff59c99aa3", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:10.557Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.678823S", + "compute_time_sec": 10.678823, + "compute_times": { + "total": 10.751442176289856, + "clean_up": 0.007087317295372486, + "create_cpp": 0.0551311019808054, + "file_setup": 0.47634816635400057, + "compile_cpp": 4.4943006709218025, + "create_r1cs": 0.015030437149107456, + "save_results": 0.006794212386012077, + "get_r1cs_info": 0.0004126187413930893, + "groth16_setup": 1.2948075635358691, + "export_verification_key": 1.2821088591590524, + "download_trusted_setup_file": 1.9244082383811474, + "solidity_contract_generation": 1.1933906180784106 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M28.193622S", + "queue_time_sec": 28.193622, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "065e17c3-c2f4-43dd-bfb4-25d47eb233c3", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:10.538Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.414766S", + "compute_time_sec": 8.414766, + "compute_times": { + "total": 8.420880552381277, + "clean_up": 0.007978992071002722, + "create_cpp": 0.04333283565938473, + "file_setup": 0.5263300491496921, + "compile_cpp": 4.3615459580905735, + "create_r1cs": 0.01324701588600874, + "save_results": 0.00261990400031209, + "get_r1cs_info": 0.000387819018214941, + "groth16_setup": 1.1325635826215148, + "export_verification_key": 1.1708158743567765, + "download_trusted_setup_file": 0.0012339763343334198, + "solidity_contract_generation": 1.1604830459691584 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M29.111535S", + "queue_time_sec": 29.111535, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "781e94db-ed81-4fd0-9343-6c793677ff70", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:08.499Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.358733S", + "compute_time_sec": 9.358733, + "compute_times": { + "total": 9.365748152136803, + "clean_up": 0.011520247906446457, + "create_cpp": 0.06019660457968712, + "file_setup": 0.10577539727091789, + "compile_cpp": 4.703875727951527, + "create_r1cs": 0.02623022347688675, + "save_results": 0.004578210413455963, + "get_r1cs_info": 0.0007093213498592377, + "groth16_setup": 1.4257720410823822, + "export_verification_key": 1.4767277836799622, + "download_trusted_setup_file": 0.0030381716787815094, + "solidity_contract_generation": 1.546669363975525 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M21.408702S", + "queue_time_sec": 21.408702, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "65769b35-c9e4-4af7-8c82-06905a3ea64a", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:08.485Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.123128S", + "compute_time_sec": 8.123128, + "compute_times": { + "total": 8.129186652600765, + "clean_up": 0.007306267973035574, + "create_cpp": 0.043123030103743076, + "file_setup": 0.10240558395162225, + "compile_cpp": 4.392980380915105, + "create_r1cs": 0.013700432144105434, + "save_results": 0.002628076821565628, + "get_r1cs_info": 0.0003788350149989128, + "groth16_setup": 1.203370461706072, + "export_verification_key": 1.19163934327662, + "download_trusted_setup_file": 0.001252820249646902, + "solidity_contract_generation": 1.1700899167917669 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M21.355433S", + "queue_time_sec": 21.355433, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "01500370-7d80-4ebc-980e-72c39d9c8133", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:08.322Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.135577S", + "compute_time_sec": 8.135577, + "compute_times": { + "total": 8.14212649827823, + "clean_up": 0.008815570268779993, + "create_cpp": 0.04607208725064993, + "file_setup": 0.06307885982096195, + "compile_cpp": 4.452890960033983, + "create_r1cs": 0.01411517197266221, + "save_results": 0.0035643167793750763, + "get_r1cs_info": 0.0005286457017064095, + "groth16_setup": 1.2346330340951681, + "export_verification_key": 1.1526859607547522, + "download_trusted_setup_file": 0.0017918283119797707, + "solidity_contract_generation": 1.163586282171309 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M11.618563S", + "queue_time_sec": 11.618563, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6ca5fa32-1923-4aae-aa0f-e4fd8ab09473", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:08.166Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.112566S", + "compute_time_sec": 10.112566, + "compute_times": { + "total": 10.12166041508317, + "clean_up": 0.025991924107074738, + "create_cpp": 0.059982024133205414, + "file_setup": 0.8414755500853062, + "compile_cpp": 4.779291275888681, + "create_r1cs": 0.03729795664548874, + "save_results": 0.004680760204792023, + "get_r1cs_info": 0.0004007294774055481, + "groth16_setup": 1.4218801073729992, + "export_verification_key": 1.5054523050785065, + "download_trusted_setup_file": 0.0012249797582626343, + "solidity_contract_generation": 1.4434016197919846 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M10.601842S", + "queue_time_sec": 10.601842, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "fb5b8145-6c9c-47cf-b43d-a0d0a8d9033e", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:07.863Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.798840S", + "compute_time_sec": 9.79884, + "compute_times": { + "total": 9.805086587090045, + "clean_up": 0.017840934917330742, + "create_cpp": 0.04466830240562558, + "file_setup": 0.03632312174886465, + "compile_cpp": 4.46386236185208, + "create_r1cs": 0.013613509014248848, + "save_results": 0.0058236150071024895, + "get_r1cs_info": 0.00040324777364730835, + "groth16_setup": 1.1662053586915135, + "export_verification_key": 1.1957588559016585, + "download_trusted_setup_file": 1.6592066353186965, + "solidity_contract_generation": 1.2010036744177341 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M00.794609S", + "queue_time_sec": 0.794609, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "68d462ae-a06c-4a0c-a324-f277e9a295cb", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:07.851Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.286921S", + "compute_time_sec": 9.286921, + "compute_times": { + "total": 9.294204972684383, + "clean_up": 0.037755388766527176, + "create_cpp": 0.05874794349074364, + "file_setup": 0.049215640872716904, + "compile_cpp": 4.828461483120918, + "create_r1cs": 0.027856364846229553, + "save_results": 0.0162334144115448, + "get_r1cs_info": 0.000544525682926178, + "groth16_setup": 1.4224261231720448, + "export_verification_key": 1.4274491891264915, + "download_trusted_setup_file": 0.0022099651396274567, + "solidity_contract_generation": 1.422630164772272 + }, + "file_size": 236699, + "queue_time": "P0DT00H00M00.526870S", + "queue_time_sec": 0.52687, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "14874d16-90cd-4d88-8cc9-5cd1b3aeb981", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:27.378Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.414659S", + "compute_time_sec": 10.414659, + "compute_times": { + "total": 10.421586342155933, + "clean_up": 1.018418900668621, + "create_cpp": 0.09886237978935242, + "file_setup": 0.032557349652051926, + "compile_cpp": 4.994046054780483, + "create_r1cs": 0.023644402623176575, + "save_results": 0.004409823566675186, + "get_r1cs_info": 0.0003830455243587494, + "groth16_setup": 1.3954695612192154, + "export_verification_key": 1.3882874809205532, + "download_trusted_setup_file": 0.00124397873878479, + "solidity_contract_generation": 1.4636627808213234 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M36.458050S", + "queue_time_sec": 36.45805, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6281da35-04b6-4277-97cd-d8be981166cb", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:27.292Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M31.514723S", + "compute_time_sec": 31.514723, + "compute_times": { + "total": 31.587601722218096, + "clean_up": 1.3367521865293384, + "create_cpp": 0.0535531360656023, + "file_setup": 0.09539989102631807, + "compile_cpp": 4.5397063894197345, + "create_r1cs": 0.015268071554601192, + "save_results": 0.007586983032524586, + "get_r1cs_info": 0.000410398468375206, + "groth16_setup": 1.1636218382045627, + "export_verification_key": 1.1995829408988357, + "download_trusted_setup_file": 21.99695172160864, + "solidity_contract_generation": 1.1782631734386086 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M34.955081S", + "queue_time_sec": 34.955081, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f740324d-25e6-4bd5-85ba-18d206130979", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:27.196Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.494207S", + "compute_time_sec": 8.494207, + "compute_times": { + "total": 8.500656279735267, + "clean_up": 0.12053109798580408, + "create_cpp": 0.045444861985743046, + "file_setup": 0.026300867088139057, + "compile_cpp": 4.599759000353515, + "create_r1cs": 0.01557931024581194, + "save_results": 0.006546936929225922, + "get_r1cs_info": 0.00045502185821533203, + "groth16_setup": 1.2972330059856176, + "export_verification_key": 1.164379082620144, + "download_trusted_setup_file": 0.0012656673789024353, + "solidity_contract_generation": 1.2227658918127418 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M35.091963S", + "queue_time_sec": 35.091963, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f3a78762-5fc9-4d64-8898-4d54ed0e1f64", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:27.185Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M14.092370S", + "compute_time_sec": 14.09237, + "compute_times": { + "total": 14.170980683527887, + "clean_up": 0.6386476065963507, + "create_cpp": 0.05371746979653835, + "file_setup": 0.09453251957893372, + "compile_cpp": 4.719313859008253, + "create_r1cs": 0.014484315179288387, + "save_results": 0.007699191570281982, + "get_r1cs_info": 0.00042401719838380814, + "groth16_setup": 1.2005331106483936, + "export_verification_key": 1.176824883557856, + "download_trusted_setup_file": 5.055020797997713, + "solidity_contract_generation": 1.2048570234328508 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M33.730977S", + "queue_time_sec": 33.730977, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "2ef7589c-3545-47d9-8b4a-1b8ddb5b23e7", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:25.238Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.065712S", + "compute_time_sec": 10.065712, + "compute_times": { + "total": 10.072701625525951, + "clean_up": 0.6220889613032341, + "create_cpp": 0.061540763825178146, + "file_setup": 0.04436195269227028, + "compile_cpp": 4.975892219692469, + "create_r1cs": 0.02939484640955925, + "save_results": 0.004608657211065292, + "get_r1cs_info": 0.0007254332304000854, + "groth16_setup": 1.4860176593065262, + "export_verification_key": 1.4028622955083847, + "download_trusted_setup_file": 0.0030446648597717285, + "solidity_contract_generation": 1.4413307309150696 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M27.478391S", + "queue_time_sec": 27.478391, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5308d35f-7520-4fc4-8002-d12fb7d6c550", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:25.110Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.034036S", + "compute_time_sec": 9.034036, + "compute_times": { + "total": 9.041137759573758, + "clean_up": 0.781280635856092, + "create_cpp": 0.04389587510377169, + "file_setup": 0.02839166857302189, + "compile_cpp": 4.609121230430901, + "create_r1cs": 0.014260401017963886, + "save_results": 0.002448432147502899, + "get_r1cs_info": 0.00035415682941675186, + "groth16_setup": 1.1984568303450942, + "export_verification_key": 1.1906320005655289, + "download_trusted_setup_file": 0.0012082979083061218, + "solidity_contract_generation": 1.1706976247951388 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M22.546838S", + "queue_time_sec": 22.546838, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "8edd4c5c-3482-4dd0-8158-916fbf1ec8ba", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:25.009Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.819879S", + "compute_time_sec": 9.819879, + "compute_times": { + "total": 9.826730519533157, + "clean_up": 0.2898540087044239, + "create_cpp": 0.060190506279468536, + "file_setup": 0.03807961195707321, + "compile_cpp": 5.03364010155201, + "create_r1cs": 0.03027663379907608, + "save_results": 0.0042372532188892365, + "get_r1cs_info": 0.0007306970655918121, + "groth16_setup": 1.5062590315937996, + "export_verification_key": 1.459183730185032, + "download_trusted_setup_file": 0.0030453503131866455, + "solidity_contract_generation": 1.4005590714514256 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M16.821564S", + "queue_time_sec": 16.821564, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1e4069dc-4c01-4447-9db2-bad54289e388", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:24.828Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.228127S", + "compute_time_sec": 8.228127, + "compute_times": { + "total": 8.235012276098132, + "clean_up": 0.07664227951318026, + "create_cpp": 0.04467032477259636, + "file_setup": 0.026521790772676468, + "compile_cpp": 4.501883647404611, + "create_r1cs": 0.014303749427199364, + "save_results": 0.006712050177156925, + "get_r1cs_info": 0.00034636445343494415, + "groth16_setup": 1.1887650610879064, + "export_verification_key": 1.212520807981491, + "download_trusted_setup_file": 0.0012264503166079521, + "solidity_contract_generation": 1.1610937099903822 + }, + "file_size": 236699, + "queue_time": "P0DT00H00M11.716630S", + "queue_time_sec": 11.71663, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "3dea945e-041e-4c5b-81a3-e1acdc21cf98", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:24.757Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.778418S", + "compute_time_sec": 8.778418, + "compute_times": { + "total": 8.784422259777784, + "clean_up": 0.5511938845738769, + "create_cpp": 0.04414993338286877, + "file_setup": 0.03435874357819557, + "compile_cpp": 4.559329419396818, + "create_r1cs": 0.013913013972342014, + "save_results": 0.007126575335860252, + "get_r1cs_info": 0.00034239422529935837, + "groth16_setup": 1.210776842199266, + "export_verification_key": 1.1730632856488228, + "download_trusted_setup_file": 0.0014064284041523933, + "solidity_contract_generation": 1.1881988616660237 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.935423S", + "queue_time_sec": 0.935423, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "fc7d7c8f-dcf4-44f5-8477-c97cd73506f3", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:24.672Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.321396S", + "compute_time_sec": 10.321396, + "compute_times": { + "total": 10.328352369368076, + "clean_up": 0.7530637644231319, + "create_cpp": 0.055472735315561295, + "file_setup": 0.038075871765613556, + "compile_cpp": 4.720469500869513, + "create_r1cs": 0.03408133238554001, + "save_results": 0.0976421944797039, + "get_r1cs_info": 0.000644925981760025, + "groth16_setup": 1.4366725198924541, + "export_verification_key": 1.6893814019858837, + "download_trusted_setup_file": 0.002162136137485504, + "solidity_contract_generation": 1.4998642541468143 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M05.769197S", + "queue_time_sec": 5.769197, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-14T17:57:55.647Z", + "meta": {}, + "num_proofs": 26, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.426010S", + "compute_time_sec": 9.42601, + "compute_times": { + "total": 9.437843792140484, + "clean_up": 0.057791054248809814, + "create_cpp": 0.08009331300854683, + "file_setup": 0.12311352789402008, + "compile_cpp": 4.8931994587183, + "create_r1cs": 0.040594689548015594, + "save_results": 0.013895608484745026, + "get_r1cs_info": 0.0007071755826473236, + "groth16_setup": 1.397422555834055, + "export_verification_key": 1.450899638235569, + "download_trusted_setup_file": 0.0032965317368507385, + "solidity_contract_generation": 1.3762941025197506 + }, + "file_size": 1662684, + "queue_time": "P0DT00H00M00.493759S", + "queue_time_sec": 0.493759, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-14T17:46:22.764Z", + "meta": {}, + "num_proofs": 10, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H01M56.925440S", + "compute_time_sec": 116.92544, + "compute_times": { + "total": 116.93180079571903, + "clean_up": 115.11400480102748, + "file_setup": 0.828845551237464, + "nargo_checks": 0.4802310625091195, + "save_results": 0.005098612979054451, + "solidity_contract_generation": 0.5030098343268037 + }, + "file_size": 5759848, + "queue_time": "P0DT00H00M00.606416S", + "queue_time_sec": 0.606416, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "f2eb3da8-7d12-4163-8b4c-bd04cd49334d", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-14T17:39:49.065Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.537494S", + "compute_time_sec": 6.537494, + "compute_times": { + "total": 6.544770289212465, + "clean_up": 4.34150518476963, + "file_setup": 1.006766278296709, + "nargo_checks": 0.5691491775214672, + "save_results": 0.014499358832836151, + "solidity_contract_generation": 0.6120997071266174 + }, + "file_size": 5759848, + "queue_time": "P0DT00H00M00.524349S", + "queue_time_sec": 0.524349, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "67c61291-24b1-4ed7-99dc-fb7d2c362dec", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:40:09.446Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.507493S", + "compute_time_sec": 0.507493, + "compute_times": { + "total": 0.5140813617035747, + "clean_up": 0.03107771696522832, + "file_setup": 0.035331026185303926, + "nargo_checks": 0.44723919685930014 + }, + "file_size": 3601, + "queue_time": "P0DT00H00M00.477408S", + "queue_time_sec": 0.477408, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "3ba5276f-50b2-489f-a5d6-4491b60c398d", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:39:49.955Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.843597S", + "compute_time_sec": 0.843597, + "compute_times": { + "total": 0.8497447483241558, + "clean_up": 0.35245564859360456, + "file_setup": 0.034467861987650394, + "nargo_checks": 0.462372618727386 + }, + "file_size": 3601, + "queue_time": "P0DT00H00M00.705808S", + "queue_time_sec": 0.705808, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "179cc7dc-ff08-4e5e-baea-502fe209dbc8", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:39:24.606Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.466730S", + "compute_time_sec": 0.46673, + "compute_times": { + "total": 0.47336474480107427, + "clean_up": 0.01973396772518754, + "file_setup": 0.030523537192493677, + "nargo_checks": 0.42268867418169975 + }, + "file_size": 3601, + "queue_time": "P0DT00H00M00.462655S", + "queue_time_sec": 0.462655, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "a27a3a89-5c63-4c80-bc26-2e77a2e07051", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:37:50.191Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.473263S", + "compute_time_sec": 0.473263, + "compute_times": { + "total": 0.4781973138451576, + "clean_up": 0.009893154725432396, + "file_setup": 0.02923344448208809, + "nargo_checks": 0.43864382058382034 + }, + "file_size": 3601, + "queue_time": "P0DT00H00M00.690682S", + "queue_time_sec": 0.690682, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "97d5b9a1-e80f-42dc-a63f-acce27606d70", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:37:41.691Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.668388S", + "compute_time_sec": 0.668388, + "compute_times": { + "total": 0.6738973991014063, + "clean_up": 0.20331718400120735, + "file_setup": 0.037314246874302626, + "nargo_checks": 0.43269583908841014 + }, + "file_size": 3601, + "queue_time": "P0DT00H00M00.530928S", + "queue_time_sec": 0.530928, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "a4cab353-4923-4b1b-a1c2-a24818843dcf", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:37:35.450Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.502202S", + "compute_time_sec": 0.502202, + "compute_times": { + "total": 0.508173649199307, + "clean_up": 0.009636486880481243, + "file_setup": 0.04673733003437519, + "nargo_checks": 0.45122806541621685 + }, + "file_size": 3601, + "queue_time": "P0DT00H00M00.703038S", + "queue_time_sec": 0.703038, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "fc985c97-0258-43d3-bae4-4927a5d7c848", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.709Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.821377S", + "compute_time_sec": 6.821377, + "compute_times": { + "total": 6.826562466099858, + "clean_up": 0.03631652891635895, + "create_cpp": 0.04230261128395796, + "file_setup": 0.03898624051362276, + "compile_cpp": 4.361995664425194, + "create_r1cs": 0.013952208682894707, + "save_results": 0.0029701171442866325, + "get_r1cs_info": 0.0003667334094643593, + "groth16_setup": 1.1385776856914163, + "export_verification_key": 1.189240344800055, + "download_trusted_setup_file": 0.0011938214302062988 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M30.605249S", + "queue_time_sec": 30.605249, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.491Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.876603S", + "compute_time_sec": 6.876603, + "compute_times": { + "total": 6.882667106110603, + "clean_up": 0.04546098504215479, + "create_cpp": 0.043475366197526455, + "file_setup": 0.03212927980348468, + "compile_cpp": 4.419587793760002, + "create_r1cs": 0.01546289399266243, + "save_results": 0.002493636216968298, + "get_r1cs_info": 0.00048116687685251236, + "groth16_setup": 1.1517645819112659, + "export_verification_key": 1.1701868688687682, + "download_trusted_setup_file": 0.001243850216269493 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M29.007266S", + "queue_time_sec": 29.007266, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.347Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.924565S", + "compute_time_sec": 6.924565, + "compute_times": { + "total": 6.929660878144205, + "clean_up": 0.018933841958642006, + "create_cpp": 0.04256786499172449, + "file_setup": 0.02480014692991972, + "compile_cpp": 4.3917419938370585, + "create_r1cs": 0.013429097831249237, + "save_results": 0.0027808332815766335, + "get_r1cs_info": 0.00034791603684425354, + "groth16_setup": 1.2296617422252893, + "export_verification_key": 1.2036232966929674, + "download_trusted_setup_file": 0.0012051593512296677 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M22.741395S", + "queue_time_sec": 22.741395, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.342Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.942825S", + "compute_time_sec": 6.942825, + "compute_times": { + "total": 6.949025787878782, + "clean_up": 0.031298316083848476, + "create_cpp": 0.04343291139230132, + "file_setup": 0.02724728872999549, + "compile_cpp": 4.45128513360396, + "create_r1cs": 0.013787470292299986, + "save_results": 0.0027786437422037125, + "get_r1cs_info": 0.00040152110159397125, + "groth16_setup": 1.1622737408615649, + "export_verification_key": 1.214866721071303, + "download_trusted_setup_file": 0.001195291057229042 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M21.206540S", + "queue_time_sec": 21.20654, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.959Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.780219S", + "compute_time_sec": 6.780219, + "compute_times": { + "total": 6.785887842997909, + "clean_up": 0.04605554789304733, + "create_cpp": 0.04327188339084387, + "file_setup": 0.027595113962888718, + "compile_cpp": 4.341672266833484, + "create_r1cs": 0.015188083983957767, + "save_results": 0.0029082708060741425, + "get_r1cs_info": 0.0004408573731780052, + "groth16_setup": 1.1388461524620652, + "export_verification_key": 1.1682334607467055, + "download_trusted_setup_file": 0.0012331167235970497 + }, + "file_size": 225450, + "queue_time": "P0DT00H00M17.005312S", + "queue_time_sec": 17.005312, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.944Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.894050S", + "compute_time_sec": 6.89405, + "compute_times": { + "total": 6.900198160205036, + "clean_up": 0.008259693160653114, + "create_cpp": 0.04261480597779155, + "file_setup": 0.02665704721584916, + "compile_cpp": 4.348901640623808, + "create_r1cs": 0.014178600162267685, + "save_results": 0.0026379870250821114, + "get_r1cs_info": 0.00040513090789318085, + "groth16_setup": 1.2399181728251278, + "export_verification_key": 1.2150304690003395, + "download_trusted_setup_file": 0.001215549185872078 + }, + "file_size": 225450, + "queue_time": "P0DT00H00M15.716837S", + "queue_time_sec": 15.716837, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.833Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.918743S", + "compute_time_sec": 6.918743, + "compute_times": { + "total": 6.924384770914912, + "clean_up": 0.00972826313227415, + "create_cpp": 0.04441164992749691, + "file_setup": 0.027338513173162937, + "compile_cpp": 4.443122708238661, + "create_r1cs": 0.014043214730918407, + "save_results": 0.0032253582030534744, + "get_r1cs_info": 0.00039947032928466797, + "groth16_setup": 1.1997679574415088, + "export_verification_key": 1.180700602941215, + "download_trusted_setup_file": 0.0012276563793420792 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M08.861907S", + "queue_time_sec": 8.861907, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.770Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.685175S", + "compute_time_sec": 6.685175, + "compute_times": { + "total": 6.691927400883287, + "clean_up": 0.009768068790435791, + "create_cpp": 0.0421549417078495, + "file_setup": 0.026188824325799942, + "compile_cpp": 4.305569048970938, + "create_r1cs": 0.013142664916813374, + "save_results": 0.002773165237158537, + "get_r1cs_info": 0.0003167171962559223, + "groth16_setup": 1.1705206399783492, + "export_verification_key": 1.1197901628911495, + "download_trusted_setup_file": 0.0012216591276228428 + }, + "file_size": 225450, + "queue_time": "P0DT00H00M08.196652S", + "queue_time_sec": 8.196652, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.765Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.844521S", + "compute_time_sec": 6.844521, + "compute_times": { + "total": 6.849527047015727, + "clean_up": 0.021212157793343067, + "create_cpp": 0.042430317029356956, + "file_setup": 0.028176416642963886, + "compile_cpp": 4.403458681888878, + "create_r1cs": 0.013620416633784771, + "save_results": 0.007373335771262646, + "get_r1cs_info": 0.00034633465111255646, + "groth16_setup": 1.1376929804682732, + "export_verification_key": 1.1933853346854448, + "download_trusted_setup_file": 0.0013576876372098923 + }, + "file_size": 225450, + "queue_time": "P0DT00H00M00.748407S", + "queue_time_sec": 0.748407, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.689Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.784180S", + "compute_time_sec": 6.78418, + "compute_times": { + "total": 6.789581563323736, + "clean_up": 0.008159313350915909, + "create_cpp": 0.04301437921822071, + "file_setup": 0.03162584872916341, + "compile_cpp": 4.316627806052566, + "create_r1cs": 0.01355265872552991, + "save_results": 0.006111504044383764, + "get_r1cs_info": 0.00033407704904675484, + "groth16_setup": 1.2013251609168947, + "export_verification_key": 1.1670180107466877, + "download_trusted_setup_file": 0.0014280471950769424 + }, + "file_size": 225416, + "queue_time": "P0DT00H00M00.480293S", + "queue_time_sec": 0.480293, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_name": "poseidon", + "project_name": "poseidon", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:08:55.369Z", + "meta": {}, + "num_proofs": 229, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M20.064560S", + "compute_time_sec": 20.06456, + "compute_times": { + "total": 20.07014292757958, + "compile": 12.642420304007828, + "clean_up": 5.060501893050969, + "file_setup": 2.2013850677758455, + "save_results": 0.036197442561388016, + "compile_r1cs_and_keygen": 0.12922980543226004 + }, + "file_size": 30921195, + "queue_time": "P0DT00H00M00.281108S", + "queue_time_sec": 0.281108, + "uploaded_file_name": "poseidon.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "gnark", + "date_created": "2024-02-28T18:01:02.213Z", + "meta": {}, + "num_proofs": 2, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M14.157686S", + "compute_time_sec": 14.157686, + "compute_times": { + "total": 14.164283829275519, + "compile": 9.50105039961636, + "clean_up": 2.131474153138697, + "file_setup": 2.504877657163888, + "save_results": 0.007419941946864128, + "compile_r1cs_and_keygen": 0.018980357330292463 + }, + "file_size": 19726986, + "queue_time": "P0DT00H00M00.242197S", + "queue_time_sec": 0.242197, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "e8a1472e-d889-42ad-b452-f52ad00d6c60", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2024-02-28T16:06:54.944Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "ews-my-branch" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.680331S", + "compute_time_sec": 2.680331, + "compute_times": { + "total": 2.6865532309748232, + "clean_up": 0.15621905494481325, + "file_setup": 0.07576264115050435, + "create_r1cs": 0.02499393606558442, + "create_wasm": 0.037889659870415926, + "save_results": 0.006284092087298632, + "get_r1cs_info": 0.0003155169542878866, + "groth16_setup": 1.1963414950296283, + "export_verification_key": 1.1868828509468585, + "download_trusted_setup_file": 0.0014421690721064806 + }, + "file_size": 1467971, + "queue_time": "P0DT00H00M00.278162S", + "queue_time_sec": 0.278162, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "6604d985-9f8b-4625-8337-dad8ba54d982", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2024-02-28T16:06:28.625Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.723950S", + "compute_time_sec": 2.72395, + "compute_times": { + "total": 2.730448425281793, + "clean_up": 0.03860751632601023, + "file_setup": 0.08125918405130506, + "create_r1cs": 0.025404677726328373, + "create_wasm": 0.03741568187251687, + "save_results": 0.007240877952426672, + "get_r1cs_info": 0.00033877836540341377, + "groth16_setup": 1.2571284701116383, + "export_verification_key": 1.2813060129992664, + "download_trusted_setup_file": 0.0013454826548695564 + }, + "file_size": 1467971, + "queue_time": "P0DT00H00M00.247590S", + "queue_time_sec": 0.24759, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_name": "hash-checker", + "project_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-27T01:57:59.411Z", + "meta": {}, + "num_proofs": 4, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M36.843744S", + "compute_time_sec": 36.843744, + "compute_times": { + "total": 36.91908207698725, + "clean_up": 0.03467807709239423, + "create_cpp": 0.7680627549998462, + "file_setup": 0.1394905720371753, + "compile_cpp": 28.152615127852187, + "create_r1cs": 0.34302311204373837, + "save_results": 0.006143820006400347, + "get_r1cs_info": 0.0005576841067522764, + "groth16_setup": 4.3415444530546665, + "export_verification_key": 1.252952174982056, + "download_trusted_setup_file": 1.879397285869345 + }, + "file_size": 3870229, + "queue_time": "P0DT00H00M00.286679S", + "queue_time_sec": 0.286679, + "uploaded_file_name": "hash-checker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "d3ce1234-c288-426a-9a62-9d1b08fde708", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-02-26T02:32:51.263Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.040985S", + "compute_time_sec": 0.040985, + "compute_times": { + "total": 0.03328296495601535, + "file_setup": 0.02101697097532451, + "create_wasm": 0.011749706929549575 + }, + "file_size": 1015, + "queue_time": "P0DT00H00M00.306452S", + "queue_time_sec": 0.306452, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code --output /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990 --wasm /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code/./circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code/./circuit.circom':17:5\n │\n17 │ differenceInverse <== difference != 0 ? 1 / difference : 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->isEqual\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "982703f3-8e15-4de1-8f59-ca066d139692", + "circuit_name": "hash-checker", + "project_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-25T21:21:18.316Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M36.116953S", + "compute_time_sec": 36.116953, + "compute_times": { + "total": 36.12258589011617, + "clean_up": 0.045256566954776645, + "create_cpp": 0.7550635728985071, + "file_setup": 0.055438351118937135, + "compile_cpp": 27.543986437143758, + "create_r1cs": 0.34856289392337203, + "save_results": 0.005512146046385169, + "get_r1cs_info": 0.0005783189553767443, + "groth16_setup": 4.374077996937558, + "export_verification_key": 1.1806295281276107, + "download_trusted_setup_file": 1.8129089260473847 + }, + "file_size": 3870232, + "queue_time": "P0DT00H00M00.280658S", + "queue_time_sec": 0.280658, + "uploaded_file_name": "hash-checker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "a9df4d3c-b90c-4a46-9110-4459b7c5ea96", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-02-25T21:15:00.721Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.153850S", + "compute_time_sec": 0.15385, + "compute_times": { + "total": 0.14053412294015288, + "file_setup": 0.12803456606343389, + "create_wasm": 0.01188180991448462 + }, + "file_size": 1004, + "queue_time": "P0DT00H00M00.345862S", + "queue_time_sec": 0.345862, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code --output /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034 --wasm /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code/./circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code/./circuit.circom':17:5\n │\n17 │ differenceInverse <== difference != 0 ? 1 / difference : 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->isEqual\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "729b7ce0-829c-4317-b785-f0e4bc807e90", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-02-22T00:02:35.495Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.105806S", + "compute_time_sec": 8.105806, + "compute_times": { + "total": 8.111726151080802, + "clean_up": 0.03814816800877452, + "create_cpp": 0.11785020097158849, + "file_setup": 0.07184063596650958, + "compile_cpp": 4.999685499118641, + "create_r1cs": 0.027501144912093878, + "save_results": 0.0056748660281300545, + "get_r1cs_info": 0.0003923040349036455, + "groth16_setup": 1.33484046603553, + "export_verification_key": 1.5138321269769222, + "download_trusted_setup_file": 0.0013768889475613832 + }, + "file_size": 1650685, + "queue_time": "P0DT00H00M00.299859S", + "queue_time_sec": 0.299859, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "8378ba8b-2ff2-4c9d-88b1-417bd444562c", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-02-21T23:58:37.180Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.050622S", + "compute_time_sec": 7.050622, + "compute_times": { + "total": 7.057020629988983, + "clean_up": 0.062270441092550755, + "create_cpp": 0.06243468704633415, + "file_setup": 0.07652567396871746, + "compile_cpp": 4.485646587098017, + "create_r1cs": 0.02570242597721517, + "save_results": 0.00595727888867259, + "get_r1cs_info": 0.00039725680835545063, + "groth16_setup": 1.17986157303676, + "export_verification_key": 1.1563023570924997, + "download_trusted_setup_file": 0.0012368990574032068 + }, + "file_size": 1651141, + "queue_time": "P0DT00H00M00.297240S", + "queue_time_sec": 0.29724, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", + "circuit_name": "hash-checker", + "project_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-16T16:44:06.247Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M35.940220S", + "compute_time_sec": 35.94022, + "compute_times": { + "total": 35.94744881300721, + "clean_up": 0.0907127889804542, + "create_cpp": 0.8199345880420879, + "file_setup": 0.08025214297231287, + "compile_cpp": 27.603134420933202, + "create_r1cs": 0.38317175407428294, + "save_results": 0.009111783001571894, + "get_r1cs_info": 0.0010840859031304717, + "groth16_setup": 4.134320180979557, + "export_verification_key": 1.0508651459822431, + "download_trusted_setup_file": 1.7740050770808011 + }, + "file_size": 3869586, + "queue_time": "P0DT00H00M00.255393S", + "queue_time_sec": 0.255393, + "uploaded_file_name": "hash-checker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 1, + "num_private_inputs": 4, + "num_public_inputs": 0 + }, + { + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_name": "hash-checker", + "project_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-15T19:07:26.262Z", + "meta": {}, + "num_proofs": 2, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M35.144392S", + "compute_time_sec": 35.144392, + "compute_times": { + "total": 35.15089295199141, + "clean_up": 0.11753120506182313, + "create_cpp": 0.7529647811315954, + "file_setup": 0.06330146407708526, + "compile_cpp": 28.331635219044983, + "create_r1cs": 0.34842015197500587, + "save_results": 0.010279993992298841, + "get_r1cs_info": 0.0006776847876608372, + "groth16_setup": 4.291510064154863, + "export_verification_key": 1.2317856717854738, + "download_trusted_setup_file": 0.002070905175060034 + }, + "file_size": 3870226, + "queue_time": "P0DT00H00M00.226366S", + "queue_time_sec": 0.226366, + "uploaded_file_name": "hash-checker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-02-15T16:46:44.192Z", + "meta": {}, + "num_proofs": 5, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.775219S", + "compute_time_sec": 6.775219, + "compute_times": { + "total": 6.786237360094674, + "clean_up": 0.02926708501763642, + "create_cpp": 0.06894711602944881, + "file_setup": 0.06364756193943322, + "compile_cpp": 4.536427660030313, + "create_r1cs": 0.0257944610202685, + "save_results": 0.008142217062413692, + "get_r1cs_info": 0.000770728918723762, + "groth16_setup": 1.0133657020051032, + "export_verification_key": 1.0354817470069975, + "download_trusted_setup_file": 0.003386533004231751 + }, + "file_size": 232969, + "queue_time": "P0DT00H00M00.306632S", + "queue_time_sec": 0.306632, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-02-15T16:44:21.936Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.525882S", + "compute_time_sec": 7.525882, + "compute_times": { + "total": 7.532384330872446, + "clean_up": 0.41135954577475786, + "create_cpp": 0.044112610165029764, + "file_setup": 0.05311372969299555, + "compile_cpp": 4.545667007099837, + "create_r1cs": 0.021503231953829527, + "save_results": 0.023626559413969517, + "get_r1cs_info": 0.0004302137531340122, + "groth16_setup": 1.2149698357097805, + "export_verification_key": 1.2118688928894699, + "download_trusted_setup_file": 0.004898259416222572 + }, + "file_size": 232949, + "queue_time": "P0DT00H00M00.273291S", + "queue_time_sec": 0.273291, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "aa58eb57-d5d7-4f23-ad23-196a6a818e33", + "circuit_name": "hash-checker", + "project_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-15T16:21:42.338Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M35.218699S", + "compute_time_sec": 35.218699, + "compute_times": { + "total": 35.2277638950618, + "clean_up": 0.1369406400481239, + "create_cpp": 0.8040473599685356, + "file_setup": 0.1467569509986788, + "compile_cpp": 27.42731417901814, + "create_r1cs": 0.37680110498331487, + "save_results": 0.008219165029004216, + "get_r1cs_info": 0.0012246599653735757, + "groth16_setup": 4.11037651298102, + "export_verification_key": 1.009748816024512, + "download_trusted_setup_file": 1.2047668669838458 + }, + "file_size": 3868192, + "queue_time": "P0DT00H00M00.317566S", + "queue_time_sec": 0.317566, + "uploaded_file_name": "hash-checker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "f593a775-723c-4c57-8d75-196aa8c22aa0", + "circuit_name": "hash-checker", + "project_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-15T16:20:47.501Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M34.701699S", + "compute_time_sec": 34.701699, + "compute_times": { + "total": 34.707892696838826, + "clean_up": 0.09660972375422716, + "create_cpp": 0.7858420582488179, + "file_setup": 0.062256335746496916, + "compile_cpp": 27.987545497715473, + "create_r1cs": 0.3427793183363974, + "save_results": 0.006912626326084137, + "get_r1cs_info": 0.0007053948938846588, + "groth16_setup": 4.240857229102403, + "export_verification_key": 1.1814902885816991, + "download_trusted_setup_file": 0.002157846000045538 + }, + "file_size": 3868192, + "queue_time": "P0DT00H00M00.318933S", + "queue_time_sec": 0.318933, + "uploaded_file_name": "hash-checker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "f0f14b03-8cdd-43ca-9b1a-7f8cbeb5e5b4", + "circuit_name": "rate-limiting-nullifier", + "project_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-15T00:37:02.228Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M55.791705S", + "compute_time_sec": 55.791705, + "compute_times": { + "total": 55.797921964898705, + "clean_up": 0.07545234775170684, + "create_cpp": 1.1982138170860708, + "file_setup": 0.0613596779294312, + "compile_cpp": 36.85164702497423, + "create_r1cs": 0.7978045740164816, + "save_results": 0.006434123031795025, + "get_r1cs_info": 0.002160165924578905, + "groth16_setup": 15.61639252398163, + "export_verification_key": 1.167371460236609, + "download_trusted_setup_file": 0.020440288819372654 + }, + "file_size": 7540832, + "queue_time": "P0DT00H00M00.257892S", + "queue_time_sec": 0.257892, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 + }, + { + "circuit_id": "f2b8f457-542b-4119-b117-7d320b66bb7c", + "circuit_name": "rate-limiting-nullifier", + "project_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T23:58:52.084Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M56.901539S", + "compute_time_sec": 56.901539, + "compute_times": { + "total": 56.907790740951896, + "clean_up": 0.1532127452082932, + "create_cpp": 1.1961525329388678, + "file_setup": 0.05804666178300977, + "compile_cpp": 38.085547543130815, + "create_r1cs": 0.8190577877685428, + "save_results": 0.010267478879541159, + "get_r1cs_info": 0.002185516059398651, + "groth16_setup": 15.381996811367571, + "export_verification_key": 1.1801622677594423, + "download_trusted_setup_file": 0.020589394960552454 + }, + "file_size": 7540785, + "queue_time": "P0DT00H00M00.286676S", + "queue_time_sec": 0.286676, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 + }, + { + "circuit_id": "24eaddb7-b29e-407d-8445-acae4d1251c0", + "circuit_name": "rate-limiting-nullifier", + "project_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T23:57:50.289Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M56.834710S", + "compute_time_sec": 56.83471, + "compute_times": { + "total": 56.8432289250195, + "clean_up": 0.10309748293366283, + "create_cpp": 1.2134589219931513, + "file_setup": 0.09620017104316503, + "compile_cpp": 38.34681939892471, + "create_r1cs": 0.824894416029565, + "save_results": 0.010392117081210017, + "get_r1cs_info": 0.004026207025162876, + "groth16_setup": 15.126561413053423, + "export_verification_key": 1.0899655069224536, + "download_trusted_setup_file": 0.02710751595441252 + }, + "file_size": 7540780, + "queue_time": "P0DT00H00M00.287988S", + "queue_time_sec": 0.287988, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 + }, + { + "circuit_id": "823d02d8-4196-41c8-8795-afa03f834d9c", + "circuit_name": "rate-limiting-nullifier", + "project_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T23:52:09.320Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M57.335290S", + "compute_time_sec": 57.33529, + "compute_times": { + "total": 57.34173893509433, + "clean_up": 0.10366297094151378, + "create_cpp": 1.246839945204556, + "file_setup": 0.06519381469115615, + "compile_cpp": 38.10613914998248, + "create_r1cs": 0.821301891002804, + "save_results": 0.0067642792128026485, + "get_r1cs_info": 0.002133298199623823, + "groth16_setup": 15.753068736288697, + "export_verification_key": 1.2155762687325478, + "download_trusted_setup_file": 0.020359096582978964 + }, + "file_size": 7540742, + "queue_time": "P0DT00H00M00.278472S", + "queue_time_sec": 0.278472, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 + }, + { + "circuit_id": "826533ec-50c2-4b77-bb69-dc309611e4e0", + "circuit_name": "rate-limiting-nullifier", + "project_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T23:43:09.159Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M54.984651S", + "compute_time_sec": 54.984651, + "compute_times": { + "total": 54.99341053608805, + "clean_up": 0.06826841598376632, + "create_cpp": 1.2764658289961517, + "file_setup": 0.08957945799920708, + "compile_cpp": 36.77387927705422, + "create_r1cs": 0.801689010928385, + "save_results": 0.009336387040093541, + "get_r1cs_info": 0.003953314037062228, + "groth16_setup": 14.896520375041291, + "export_verification_key": 1.0483920950209722, + "download_trusted_setup_file": 0.024622616940177977 + }, + "file_size": 7540733, + "queue_time": "P0DT00H00M00.304312S", + "queue_time_sec": 0.304312, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 + }, + { + "circuit_id": "4830fb89-cbb8-44b3-bea1-1b30a1637c1b", + "circuit_name": "rate-limiting-nullifier", + "project_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T21:42:21.824Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M56.975886S", + "compute_time_sec": 56.975886, + "compute_times": { + "total": 56.984479263890535, + "clean_up": 0.071199910948053, + "create_cpp": 1.246658438933082, + "file_setup": 0.08264653407968581, + "compile_cpp": 37.13031674805097, + "create_r1cs": 0.8157099969685078, + "save_results": 0.008955279947258532, + "get_r1cs_info": 0.004004108952358365, + "groth16_setup": 14.917821239912882, + "export_verification_key": 1.06573862710502, + "download_trusted_setup_file": 1.640640855068341 + }, + "file_size": 7540735, + "queue_time": "P0DT00H00M00.322200S", + "queue_time_sec": 0.3222, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 + }, + { + "circuit_id": "0f081333-dfdd-4602-934c-f7da54fadcc6", + "circuit_name": "hash-checker", + "project_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-14T21:41:14.188Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M36.819064S", + "compute_time_sec": 36.819064, + "compute_times": { + "total": 36.826748004648834, + "clean_up": 0.11822917684912682, + "create_cpp": 0.7589871259406209, + "file_setup": 0.15491734398528934, + "compile_cpp": 28.743124674074352, + "create_r1cs": 0.35148238157853484, + "save_results": 0.00582153769209981, + "get_r1cs_info": 0.0006839861162006855, + "groth16_setup": 4.374190780799836, + "export_verification_key": 1.1788361864164472, + "download_trusted_setup_file": 1.1384393190965056 + }, + "file_size": 3867265, + "queue_time": "P0DT00H00M00.269335S", + "queue_time_sec": 0.269335, + "uploaded_file_name": "hash-checker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "83ab5079-fa86-4f48-ad9d-68c60a0957ee", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-02-14T21:39:50.042Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M47.319956S", + "compute_time_sec": 47.319956, + "compute_times": { + "total": 47.326535122003406, + "clean_up": 0.08247739961370826, + "create_cpp": 1.000471537001431, + "file_setup": 0.0585682881064713, + "compile_cpp": 29.038879429921508, + "create_r1cs": 0.6561976410448551, + "save_results": 0.006647040136158466, + "get_r1cs_info": 0.0020793969742953777, + "groth16_setup": 15.312814712058753, + "export_verification_key": 1.1472203098237514, + "download_trusted_setup_file": 0.02056274702772498 + }, + "file_size": 6775884, + "queue_time": "P0DT00H00M00.256588S", + "queue_time_sec": 0.256588, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 + }, + { + "circuit_id": "d62a7af2-36c9-401f-aa28-fd372e6ea1f2", + "circuit_name": "Semaphore", + "project_name": "Semaphore", + "circuit_type": "circom", + "date_created": "2024-02-14T21:36:56.776Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M47.874450S", + "compute_time_sec": 47.87445, + "compute_times": { + "total": 47.88067169301212, + "clean_up": 0.08292657090350986, + "create_cpp": 1.0067430417984724, + "file_setup": 0.060509118251502514, + "compile_cpp": 28.465293834917247, + "create_r1cs": 0.6478999992832541, + "save_results": 0.00611361488699913, + "get_r1cs_info": 0.0020417659543454647, + "groth16_setup": 14.801113961264491, + "export_verification_key": 1.1754452609457076, + "download_trusted_setup_file": 1.6319761737249792 + }, + "file_size": 6775882, + "queue_time": "P0DT00H00M00.241228S", + "queue_time_sec": 0.241228, + "uploaded_file_name": "Semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 + }, + { + "circuit_id": "2e554eef-5434-4c0b-9e68-857ab611b10a", + "circuit_name": "email", + "project_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T16:08:08.930Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.897920S", + "compute_time_sec": 2.89792, + "compute_times": { + "total": 0.9285368990385905, + "create_cpp": 0.04405528900679201, + "file_setup": 0.8838426299626008 + }, + "file_size": 24822850, + "queue_time": "P0DT00H00M00.329843S", + "queue_time_sec": 0.329843, + "uploaded_file_name": "email.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673/code/./circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "8258335e-20af-431b-95bb-f443592f598e", + "circuit_name": "email", + "project_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T16:06:51.116Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M03.346644S", + "compute_time_sec": 3.346644, + "compute_times": { + "total": 0.8087141560390592, + "create_cpp": 0.01664800103753805, + "file_setup": 0.791186569724232 + }, + "file_size": 24822792, + "queue_time": "P0DT00H00M00.273012S", + "queue_time_sec": 0.273012, + "uploaded_file_name": "email.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640/code --output /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640 --c /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640/code/./circuit.circom stdout: stderr: error[P1014]: The file circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "357ab818-e35a-4c82-9839-92d5afbce08f", + "circuit_name": "email", + "project_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T16:02:01.839Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M03.017827S", + "compute_time_sec": 3.017827, + "compute_times": { + "total": 0.8431280389195308, + "create_cpp": 0.03038154193200171, + "file_setup": 0.8116235659690574 + }, + "file_size": 24822332, + "queue_time": "P0DT00H00M00.475505S", + "queue_time_sec": 0.475505, + "uploaded_file_name": "email.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772/code/./circuit.circom stdout: stderr: error[P1014]: The file circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "8bf2ef60-96b8-4974-9b7c-cf0763ee661c", + "circuit_name": "email", + "project_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T16:00:40.414Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.297335S", + "compute_time_sec": 0.297335, + "compute_times": { + "total": 0.11431554611772299, + "create_cpp": 0.014114855322986841, + "file_setup": 0.09887601295486093 + }, + "file_size": 1416811, + "queue_time": "P0DT00H00M00.292787S", + "queue_time_sec": 0.292787, + "uploaded_file_name": "email.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781/code --output /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781 --c /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781/code/./circuit.circom stdout: stderr: error[P1014]: The file node_modules/@zk-email/zk-regex-circom/circuits/regex_helpers.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "62b994f3-3460-46af-b5b1-4876175b117b", + "circuit_name": "email", + "project_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T15:56:00.936Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.259954S", + "compute_time_sec": 0.259954, + "compute_times": { + "total": 0.12665929598733783, + "create_cpp": 0.022852880065329373, + "file_setup": 0.10267018002923578 + }, + "file_size": 1416809, + "queue_time": "P0DT00H00M00.347236S", + "queue_time_sec": 0.347236, + "uploaded_file_name": "email.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125/code/./circuit.circom stdout: stderr: error[P1014]: The file @zk-email/zk-regex-circom/circuits/regex_helpers.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-02-12T16:06:15.388Z", + "meta": {}, + "num_proofs": 3, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M19.113279S", + "compute_time_sec": 19.113279, + "compute_times": { + "total": 19.119710344821215, + "clean_up": 0.05678791180253029, + "file_setup": 0.07778294384479523, + "create_r1cs": 0.6835691910237074, + "create_wasm": 1.5261333975940943, + "save_results": 0.01109285093843937, + "get_r1cs_info": 0.002000190317630768, + "groth16_setup": 15.561696534976363, + "export_verification_key": 1.1593163777142763, + "download_trusted_setup_file": 0.04080592654645443 + }, + "file_size": 7081817, + "queue_time": "P0DT00H00M00.304946S", + "queue_time_sec": 0.304946, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 + }, + { + "circuit_id": "76c05c49-9d92-4af1-8ab4-6e3c9b4bd154", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-02-12T00:14:36.781Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M21.300025S", + "compute_time_sec": 21.300025, + "compute_times": { + "total": 21.306767147034407, + "clean_up": 0.2600619550794363, + "file_setup": 0.10280199348926544, + "create_r1cs": 0.7014120128005743, + "create_wasm": 1.4916918445378542, + "save_results": 0.018025938421487808, + "get_r1cs_info": 0.003770437091588974, + "groth16_setup": 15.514674112200737, + "export_verification_key": 1.5598135478794575, + "download_trusted_setup_file": 1.654065664857626 + }, + "file_size": 7081723, + "queue_time": "P0DT00H00M00.293132S", + "queue_time_sec": 0.293132, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 + }, + { + "circuit_id": "af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-02-12T00:12:50.904Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.311458S", + "compute_time_sec": 0.311458, + "compute_times": { + "total": 0.10177313163876534, + "file_setup": 0.08924846164882183, + "create_wasm": 0.011913193389773369 + }, + "file_size": 1806552, + "queue_time": "P0DT00H00M00.288724S", + "queue_time_sec": 0.288724, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627/code/./circuits/semaphore.circom stdout: stderr: error[P1014]: The file /circuits/tree.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "4e252909-573e-499f-8d5b-1c7b35a18ff0", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-02-12T00:10:40.331Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.123483S", + "compute_time_sec": 0.123483, + "compute_times": { + "total": 0.10418374836444855, + "file_setup": 0.08240349031984806, + "create_wasm": 0.02108948677778244 + }, + "file_size": 907287, + "queue_time": "P0DT00H00M00.244690S", + "queue_time_sec": 0.24469, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299/code/./circuits/semaphore.circom stdout: stderr: error[P1014]: The file /circuits/tree.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", + "circuit_name": "hashchecker", + "project_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:51:12.364Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M36.887947S", + "compute_time_sec": 36.887947, + "compute_times": { + "total": 36.89425963815302, + "clean_up": 0.04403446055948734, + "file_setup": 29.98060936667025, + "create_r1cs": 0.3443223936483264, + "create_wasm": 1.05553247500211, + "save_results": 0.006293457001447678, + "get_r1cs_info": 0.000581374391913414, + "groth16_setup": 4.288356346078217, + "export_verification_key": 1.171438716351986, + "download_trusted_setup_file": 0.002127542160451412 + }, + "file_size": 4238536, + "queue_time": "P0DT00H00M00.257023S", + "queue_time_sec": 0.257023, + "uploaded_file_name": "hashchecker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", + "circuit_name": "hashchecker", + "project_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:35:47.834Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.242908S", + "compute_time_sec": 7.242908, + "compute_times": { + "total": 7.252888669259846, + "clean_up": 0.24440924916416407, + "file_setup": 0.10320598538964987, + "create_r1cs": 0.3493071682751179, + "create_wasm": 1.0848499182611704, + "save_results": 0.006677108816802502, + "get_r1cs_info": 0.0006677061319351196, + "groth16_setup": 4.277557077817619, + "export_verification_key": 1.1795741403475404, + "download_trusted_setup_file": 0.002051391638815403 + }, + "file_size": 4238546, + "queue_time": "P0DT00H00M00.315189S", + "queue_time_sec": 0.315189, + "uploaded_file_name": "hashchecker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_name": "hashchecker", + "project_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:32:24.516Z", + "meta": {}, + "num_proofs": 3, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.502453S", + "compute_time_sec": 8.502453, + "compute_times": { + "total": 8.5082988422364, + "clean_up": 0.24006511457264423, + "file_setup": 0.10109577886760235, + "create_r1cs": 0.374081764370203, + "create_wasm": 1.0719998348504305, + "save_results": 0.006332419812679291, + "get_r1cs_info": 0.0005895020440220833, + "groth16_setup": 4.342386241070926, + "export_verification_key": 1.097628473304212, + "download_trusted_setup_file": 1.2735503260046244 + }, + "file_size": 4238535, + "queue_time": "P0DT00H00M00.290802S", + "queue_time_sec": 0.290802, + "uploaded_file_name": "hashchecker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "85337444-db6e-4c52-9ca5-fc4de2ba5ad2", + "circuit_name": "hashchecker", + "project_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:14:59.465Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.379245S", + "compute_time_sec": 0.379245, + "compute_times": { + "total": 0.10352941323071718, + "file_setup": 0.0858859121799469, + "create_wasm": 0.016125368885695934 + }, + "file_size": 1804057, + "queue_time": "P0DT00H00M00.225145S", + "queue_time_sec": 0.225145, + "uploaded_file_name": "hashchecker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "1a225d7f-5d24-4227-b8d8-291088158998", + "circuit_name": "hashchecker", + "project_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:09:18.022Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.300239S", + "compute_time_sec": 0.300239, + "compute_times": { + "total": 0.09953181259334087, + "file_setup": 0.08270685467869043, + "create_wasm": 0.01634138822555542 + }, + "file_size": 1803953, + "queue_time": "P0DT00H00M00.267199S", + "queue_time_sec": 0.267199, + "uploaded_file_name": "hashchecker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "4df18c0a-0a2f-450d-92ce-c2233f127c12", + "circuit_name": "hashchecker", + "project_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:00:54.135Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.179718S", + "compute_time_sec": 0.179718, + "compute_times": { + "total": 0.10090719535946846, + "file_setup": 0.08464208338409662, + "create_wasm": 0.01588864903897047 + }, + "file_size": 1803921, + "queue_time": "P0DT00H00M00.251874S", + "queue_time_sec": 0.251874, + "uploaded_file_name": "hashchecker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9", + "circuit_name": "hashchecker", + "project_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T18:45:44.857Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.269437S", + "compute_time_sec": 0.269437, + "compute_times": { + "total": 0.10417102556675673, + "file_setup": 0.0870280647650361, + "create_wasm": 0.016761316917836666 + }, + "file_size": 1803870, + "queue_time": "P0DT00H00M00.229957S", + "queue_time_sec": 0.229957, + "uploaded_file_name": "hashchecker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "ebd8727d-54d7-4ac4-9a84-ca04295107e4", + "circuit_name": "hashchecker", + "project_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T18:44:01.720Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.119612S", + "compute_time_sec": 0.119612, + "compute_times": { + "total": 0.07268805895000696, + "file_setup": 0.056701790541410446, + "create_wasm": 0.015431713312864304 + }, + "file_size": 905050, + "queue_time": "P0DT00H00M00.258881S", + "queue_time_sec": 0.258881, + "uploaded_file_name": "hashchecker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "5a859067-cd25-4c02-9377-b608995509a7", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-02-11T18:10:12.579Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.281287S", + "compute_time_sec": 0.281287, + "compute_times": { + "total": 0.11563524045050144, + "file_setup": 0.10166966635733843, + "create_wasm": 0.01360108982771635 + }, + "file_size": 1805983, + "queue_time": "P0DT00H00M00.305225S", + "queue_time_sec": 0.305225, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code/./circuits/semaphore.circom stdout: stderr: error[P1012]: InvalidToken { location: 76 }\n ┌─ '/forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code/./circuits/semaphore.circom':4:9\n │\n4 │ include '//circuits/tree.circom';\n │ ^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "931c0e2f-b91c-4392-be0d-4c26d804d2de", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-02-11T18:09:21.301Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.129729S", + "compute_time_sec": 0.129729, + "compute_times": { + "total": 0.0997195653617382, + "file_setup": 0.08716154284775257, + "create_wasm": 0.01209271140396595 + }, + "file_size": 1805970, + "queue_time": "P0DT00H00M00.324444S", + "queue_time_sec": 0.324444, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code/./circuits/semaphore.circom stdout: stderr: error[P1012]: InvalidToken { location: 76 }\n ┌─ '/forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code/./circuits/semaphore.circom':4:9\n │\n4 │ include '//circuits/tree.circom';\n │ ^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "1ed9ab2d-ed52-4482-8280-ee018eb5fb18", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-01-31T22:08:05.475Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.909178S", + "compute_time_sec": 6.909178, + "compute_times": { + "total": 6.960774548351765, + "clean_up": 0.005624564364552498, + "create_cpp": 0.04884001612663269, + "file_setup": 0.23423208110034466, + "compile_cpp": 4.481184393167496, + "create_r1cs": 0.019831592217087746, + "save_results": 0.003675384446978569, + "get_r1cs_info": 0.0003577694296836853, + "groth16_setup": 1.123554177582264, + "export_verification_key": 1.0419799592345953, + "download_trusted_setup_file": 0.0011759810149669647 + }, + "file_size": 1651141, + "queue_time": "P0DT00H00M24.976953S", + "queue_time_sec": 24.976953, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:04.723Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.286136S", + "compute_time_sec": 7.286136, + "compute_times": { + "total": 7.340654090046883, + "clean_up": 0.0009148658718913794, + "create_cpp": 0.04542793915607035, + "file_setup": 0.23204711498692632, + "compile_cpp": 4.680376983946189, + "create_r1cs": 0.008409275906160474, + "save_results": 0.0033105541951954365, + "get_r1cs_info": 0.0003685750998556614, + "groth16_setup": 1.178457418922335, + "export_verification_key": 1.1900099229533225, + "download_trusted_setup_file": 0.000988946994766593 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M38.074183S", + "queue_time_sec": 38.074183, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "8d782036-8d14-4bcb-a9f6-a5e04a312722", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:04.122Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.463866S", + "compute_time_sec": 7.463866, + "compute_times": { + "total": 7.523294999962673, + "clean_up": 0.0007766569033265114, + "create_cpp": 0.04011468309909105, + "file_setup": 0.2518389639444649, + "compile_cpp": 4.806413288926706, + "create_r1cs": 0.008677670964971185, + "save_results": 0.0031781040597707033, + "get_r1cs_info": 0.00039803609251976013, + "groth16_setup": 1.1818688770290464, + "export_verification_key": 1.2287184570450336, + "download_trusted_setup_file": 0.0010086549445986748 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M37.680306S", + "queue_time_sec": 37.680306, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:03.780Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.480065S", + "compute_time_sec": 7.480065, + "compute_times": { + "total": 7.537460318999365, + "clean_up": 0.0008328610565513372, + "create_cpp": 0.03915940411388874, + "file_setup": 0.2353337057866156, + "compile_cpp": 4.872832479886711, + "create_r1cs": 0.009635194204747677, + "save_results": 0.003330645151436329, + "get_r1cs_info": 0.00040896888822317123, + "groth16_setup": 1.243939558044076, + "export_verification_key": 1.1305532888509333, + "download_trusted_setup_file": 0.0010688810143619776 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M33.511443S", + "queue_time_sec": 33.511443, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d065c8e9-c368-4544-8b63-5913596abf15", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:03.625Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.465790S", + "compute_time_sec": 7.46579, + "compute_times": { + "total": 7.517380404053256, + "clean_up": 0.000841652974486351, + "create_cpp": 0.04037469998002052, + "file_setup": 0.21061871387064457, + "compile_cpp": 4.7562680810224265, + "create_r1cs": 0.008348200935870409, + "save_results": 0.0034994680900126696, + "get_r1cs_info": 0.000424881000071764, + "groth16_setup": 1.2855071290396154, + "export_verification_key": 1.210078198928386, + "download_trusted_setup_file": 0.0010237020906060934 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M32.017107S", + "queue_time_sec": 32.017107, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "72b5eac6-8bec-47d1-9577-dd98e7dc909e", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:02.471Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.143051S", + "compute_time_sec": 7.143051, + "compute_times": { + "total": 7.1952535710297525, + "clean_up": 0.0009264149703085423, + "create_cpp": 0.037378153996542096, + "file_setup": 0.22291689622215927, + "compile_cpp": 4.493842450901866, + "create_r1cs": 0.00868003792129457, + "save_results": 0.003541851881891489, + "get_r1cs_info": 0.0003536711446940899, + "groth16_setup": 1.202652727952227, + "export_verification_key": 1.2237500881310552, + "download_trusted_setup_file": 0.0009900499135255814 + }, + "file_size": 225450, + "queue_time": "P0DT00H00M32.071917S", + "queue_time_sec": 32.071917, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "4ff80c3d-c769-432e-8292-6ce3fd19eff0", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:02.067Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.529084S", + "compute_time_sec": 7.529084, + "compute_times": { + "total": 7.584393135970458, + "clean_up": 0.00083908811211586, + "create_cpp": 0.04151515499688685, + "file_setup": 0.23193758307024837, + "compile_cpp": 4.9528708211146295, + "create_r1cs": 0.008621205808594823, + "save_results": 0.0033709488343447447, + "get_r1cs_info": 0.0004654980730265379, + "groth16_setup": 1.127253663027659, + "export_verification_key": 1.2159365471452475, + "download_trusted_setup_file": 0.0011964899022132158 + }, + "file_size": 225450, + "queue_time": "P0DT00H00M30.973415S", + "queue_time_sec": 30.973415, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "fd0f6a9e-8904-400a-8f1b-b60fb56adc6a", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:01.892Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.968285S", + "compute_time_sec": 6.968285, + "compute_times": { + "total": 7.020302023971453, + "clean_up": 0.0007189519237726927, + "create_cpp": 0.039091327926144004, + "file_setup": 0.22075876407325268, + "compile_cpp": 4.478542160009965, + "create_r1cs": 0.008031236007809639, + "save_results": 0.0033459621481597424, + "get_r1cs_info": 0.00031445594504475594, + "groth16_setup": 1.1534762841183692, + "export_verification_key": 1.1147591178305447, + "download_trusted_setup_file": 0.000989275984466076 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M24.589933S", + "queue_time_sec": 24.589933, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:01.304Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.959223S", + "compute_time_sec": 6.959223, + "compute_times": { + "total": 7.0112608759664, + "clean_up": 0.0008735461160540581, + "create_cpp": 0.038755591958761215, + "file_setup": 0.24885913101024926, + "compile_cpp": 4.36299676517956, + "create_r1cs": 0.00803148397244513, + "save_results": 0.01730395178310573, + "get_r1cs_info": 0.0003368018660694361, + "groth16_setup": 1.1180529070552438, + "export_verification_key": 1.2148506320081651, + "download_trusted_setup_file": 0.0009600170888006687 + }, + "file_size": 225450, + "queue_time": "P0DT00H00M17.111301S", + "queue_time_sec": 17.111301, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "105556d7-10b8-455e-8999-d2b31121052d", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:01.000Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.949886S", + "compute_time_sec": 6.949886, + "compute_times": { + "total": 7.000236368039623, + "clean_up": 0.0007571689784526825, + "create_cpp": 0.03813181212171912, + "file_setup": 0.39067235100083053, + "compile_cpp": 4.379259012872353, + "create_r1cs": 0.008045257069170475, + "save_results": 0.037871989188715816, + "get_r1cs_info": 0.0003408279735594988, + "groth16_setup": 1.0681434420403093, + "export_verification_key": 1.0757975298911333, + "download_trusted_setup_file": 0.0009711629245430231 + }, + "file_size": 225416, + "queue_time": "P0DT00H00M01.134467S", + "queue_time_sec": 1.134467, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:00.922Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.086134S", + "compute_time_sec": 7.086134, + "compute_times": { + "total": 7.139805332990363, + "clean_up": 0.0007637820672243834, + "create_cpp": 0.040777466958388686, + "file_setup": 0.22701866691932082, + "compile_cpp": 4.5694026600103825, + "create_r1cs": 0.008620185079053044, + "save_results": 0.009906678926199675, + "get_r1cs_info": 0.0005167280323803425, + "groth16_setup": 1.0815790109336376, + "export_verification_key": 1.1996698069851846, + "download_trusted_setup_file": 0.0012109570670872927 + }, + "file_size": 225450, + "queue_time": "P0DT00H00M09.283956S", + "queue_time_sec": 9.283956, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "7c994a90-a43d-4469-ab98-ebeb37959a50", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2024-01-17T00:39:38.679Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.550840S", + "compute_time_sec": 7.55084, + "compute_times": { + "total": 7.629153113812208, + "clean_up": 0.011455003172159195, + "create_cpp": 0.054636724293231964, + "file_setup": 0.31103159487247467, + "compile_cpp": 4.492543734610081, + "create_r1cs": 0.0336969792842865, + "save_results": 0.005911210551857948, + "get_r1cs_info": 0.0004208497703075409, + "groth16_setup": 1.3556907046586275, + "export_verification_key": 1.3620027527213097, + "download_trusted_setup_file": 0.0013344846665859222 + }, + "file_size": 1650629, + "queue_time": "P0DT00H00M15.012343S", + "queue_time_sec": 15.012343, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "f4e09c80-ea3e-4a75-a0ae-5528596f8f44", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:27:15.352Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.078009S", + "compute_time_sec": 8.078009, + "compute_times": { + "total": 8.165162647143006, + "clean_up": 0.001927914097905159, + "create_cpp": 0.05209779180586338, + "file_setup": 0.2735048495233059, + "compile_cpp": 4.798323042690754, + "create_r1cs": 0.018848145380616188, + "save_results": 0.00658784992992878, + "get_r1cs_info": 0.0008379388600587845, + "groth16_setup": 1.6222364120185375, + "export_verification_key": 1.38789046369493, + "download_trusted_setup_file": 0.0024561677128076553 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.054530S", + "queue_time_sec": 1.05453, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0661770a-d4a7-4738-a0b3-df9c9299beb8", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:27:14.083Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.904210S", + "compute_time_sec": 7.90421, + "compute_times": { + "total": 7.990685863420367, + "clean_up": 0.0017737876623868942, + "create_cpp": 0.04771621339023113, + "file_setup": 0.2793459966778755, + "compile_cpp": 4.619792276993394, + "create_r1cs": 0.00932052917778492, + "save_results": 0.006265198811888695, + "get_r1cs_info": 0.0004815235733985901, + "groth16_setup": 1.4397705420851707, + "export_verification_key": 1.584412407130003, + "download_trusted_setup_file": 0.0015385709702968597 + }, + "file_size": 225450, + "queue_time": "P0DT00H00M01.148767S", + "queue_time_sec": 1.148767, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "4d725eb8-21ba-4389-9bad-06aab98177bc", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:27:14.042Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.840020S", + "compute_time_sec": 7.84002, + "compute_times": { + "total": 7.916158145293593, + "clean_up": 0.001588582992553711, + "create_cpp": 0.05656779184937477, + "file_setup": 0.2618618682026863, + "compile_cpp": 4.655229337513447, + "create_r1cs": 0.010038148611783981, + "save_results": 0.005318811163306236, + "get_r1cs_info": 0.0004153270274400711, + "groth16_setup": 1.3863549754023552, + "export_verification_key": 1.5370171926915646, + "download_trusted_setup_file": 0.0013035386800765991 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.103501S", + "queue_time_sec": 1.103501, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "71009985-54d8-46cf-92c7-c5a52d51cb14", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:26:26.125Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.895332S", + "compute_time_sec": 7.895332, + "compute_times": { + "total": 7.985105384141207, + "clean_up": 0.0017092283815145493, + "create_cpp": 0.05560790188610554, + "file_setup": 0.27359912544488907, + "compile_cpp": 4.84467164054513, + "create_r1cs": 0.01020035706460476, + "save_results": 0.00596289336681366, + "get_r1cs_info": 0.0003344062715768814, + "groth16_setup": 1.3516457378864288, + "export_verification_key": 1.4395998753607273, + "download_trusted_setup_file": 0.001010250300168991 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.097711S", + "queue_time_sec": 1.097711, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "28e9927d-a35f-4c65-86dc-d1557d5e5929", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:26:25.495Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.731496S", + "compute_time_sec": 7.731496, + "compute_times": { + "total": 7.827601557597518, + "clean_up": 0.002000821754336357, + "create_cpp": 0.04701829329133034, + "file_setup": 0.2621183265000582, + "compile_cpp": 4.725081695243716, + "create_r1cs": 0.011297162622213364, + "save_results": 0.005976244807243347, + "get_r1cs_info": 0.0006684809923171997, + "groth16_setup": 1.4255939163267612, + "export_verification_key": 1.3449707236140966, + "download_trusted_setup_file": 0.0024210847914218903 + }, + "file_size": 225430, + "queue_time": "P0DT00H00M01.269570S", + "queue_time_sec": 1.26957, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ab5ac8cd-1c1e-4e91-b101-5a8a803643e2", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:31:55.438Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.586921S", + "compute_time_sec": 7.586921, + "compute_times": { + "total": 7.663304785266519, + "clean_up": 0.0015752892941236496, + "create_cpp": 0.049899373203516006, + "file_setup": 0.22959892638027668, + "compile_cpp": 4.780468979850411, + "create_r1cs": 0.017419403418898582, + "save_results": 0.0054653361439704895, + "get_r1cs_info": 0.0007719267159700394, + "groth16_setup": 1.2644738126546144, + "export_verification_key": 1.310561291873455, + "download_trusted_setup_file": 0.0026084203273057938 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.132337S", + "queue_time_sec": 1.132337, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "eecfde78-02ac-43e4-8bab-05b248ee5ba4", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:27:56.593Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.801205S", + "compute_time_sec": 7.801205, + "compute_times": { + "total": 7.875548103824258, + "clean_up": 0.0017300937324762344, + "create_cpp": 0.05396237596869469, + "file_setup": 0.2385635208338499, + "compile_cpp": 4.6406055726110935, + "create_r1cs": 0.016733812168240547, + "save_results": 0.004983868449926376, + "get_r1cs_info": 0.0006270240992307663, + "groth16_setup": 1.3868273310363293, + "export_verification_key": 1.528601661324501, + "download_trusted_setup_file": 0.002437632530927658 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.098988S", + "queue_time_sec": 1.098988, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6434e7e2-faf6-4602-9da1-a4b0095c5e80", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:27:42.490Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.531215S", + "compute_time_sec": 7.531215, + "compute_times": { + "total": 7.6094263680279255, + "clean_up": 0.001713564619421959, + "create_cpp": 0.04710027575492859, + "file_setup": 0.23515290580689907, + "compile_cpp": 4.696669522672892, + "create_r1cs": 0.017408769577741623, + "save_results": 0.005742281675338745, + "get_r1cs_info": 0.0006468463689088821, + "groth16_setup": 1.3201909139752388, + "export_verification_key": 1.2817781921476126, + "download_trusted_setup_file": 0.0024629440158605576 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.133009S", + "queue_time_sec": 1.133009, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6e118e95-38fb-41a1-b179-9ecdc2682886", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:27:26.943Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.713700S", + "compute_time_sec": 7.7137, + "compute_times": { + "total": 7.7915890868753195, + "clean_up": 0.001603648066520691, + "create_cpp": 0.04629753343760967, + "file_setup": 0.2314635906368494, + "compile_cpp": 4.7291872799396515, + "create_r1cs": 0.016094380989670753, + "save_results": 0.005229661241173744, + "get_r1cs_info": 0.0004699360579252243, + "groth16_setup": 1.3847032357007265, + "export_verification_key": 1.3747948426753283, + "download_trusted_setup_file": 0.0012649912387132645 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.176030S", + "queue_time_sec": 1.17603, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "e4a9ebed-456f-4726-9d5f-7eece0925920", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:24:25.201Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.782942S", + "compute_time_sec": 7.782942, + "compute_times": { + "total": 7.858149649575353, + "clean_up": 0.0016285404562950134, + "create_cpp": 0.04751185514032841, + "file_setup": 0.22963756695389748, + "compile_cpp": 4.810557749122381, + "create_r1cs": 0.011191016063094139, + "save_results": 0.0053499843925237656, + "get_r1cs_info": 0.0006842408329248428, + "groth16_setup": 1.305834548547864, + "export_verification_key": 1.4425791203975677, + "download_trusted_setup_file": 0.0027836784720420837 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.192228S", + "queue_time_sec": 1.192228, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0e761d1e-15cc-414e-9ec4-cc0771b7e28b", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:24:08.702Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.712942S", + "compute_time_sec": 7.712942, + "compute_times": { + "total": 7.788311326876283, + "clean_up": 0.0015964601188898087, + "create_cpp": 0.048168059438467026, + "file_setup": 0.24294559471309185, + "compile_cpp": 4.80493832193315, + "create_r1cs": 0.01979799196124077, + "save_results": 0.005484664812684059, + "get_r1cs_info": 0.0007523689419031143, + "groth16_setup": 1.360052939504385, + "export_verification_key": 1.3015912808477879, + "download_trusted_setup_file": 0.00248897448182106 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.222064S", + "queue_time_sec": 1.222064, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f1947dcc-fb1d-426e-b503-2672cd5a02d3", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:23:55.055Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.504987S", + "compute_time_sec": 7.504987, + "compute_times": { + "total": 7.582275737076998, + "clean_up": 0.00203564390540123, + "create_cpp": 0.04740658402442932, + "file_setup": 0.2326672412455082, + "compile_cpp": 4.5253369603306055, + "create_r1cs": 0.015371032059192657, + "save_results": 0.0063849929720163345, + "get_r1cs_info": 0.0003808550536632538, + "groth16_setup": 1.3611575067043304, + "export_verification_key": 1.3897777944803238, + "download_trusted_setup_file": 0.0012431517243385315 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.111203S", + "queue_time_sec": 1.111203, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "59073bbb-5975-4037-92e2-3afbe768b179", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:23:31.285Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.404341S", + "compute_time_sec": 7.404341, + "compute_times": { + "total": 7.481531243771315, + "clean_up": 0.001758268103003502, + "create_cpp": 0.054409828037023544, + "file_setup": 0.228825144469738, + "compile_cpp": 4.561935219913721, + "create_r1cs": 0.01824786141514778, + "save_results": 0.005484595894813538, + "get_r1cs_info": 0.000652119517326355, + "groth16_setup": 1.3237749002873898, + "export_verification_key": 1.2835038527846336, + "download_trusted_setup_file": 0.0024792589247226715 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.164668S", + "queue_time_sec": 1.164668, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c38900d0-5400-4f89-bd51-2203da0a945b", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:23:11.647Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.506243S", + "compute_time_sec": 7.506243, + "compute_times": { + "total": 7.5825384352356195, + "clean_up": 0.0020943544805049896, + "create_cpp": 0.055948369204998016, + "file_setup": 0.2336848620325327, + "compile_cpp": 4.572340337559581, + "create_r1cs": 0.011611813679337502, + "save_results": 0.006018133834004402, + "get_r1cs_info": 0.000943819060921669, + "groth16_setup": 1.345878291875124, + "export_verification_key": 1.3496504835784435, + "download_trusted_setup_file": 0.003846803680062294 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.123872S", + "queue_time_sec": 1.123872, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d615d23b-4c2c-4d30-b994-d655731e90cd", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:21:38.135Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.490694S", + "compute_time_sec": 7.490694, + "compute_times": { + "total": 7.569987336173654, + "clean_up": 0.002130907028913498, + "create_cpp": 0.04748098365962505, + "file_setup": 0.2508866246789694, + "compile_cpp": 4.549122573807836, + "create_r1cs": 0.01635313406586647, + "save_results": 0.006561141461133957, + "get_r1cs_info": 0.0007531233131885529, + "groth16_setup": 1.3041542451828718, + "export_verification_key": 1.389599822461605, + "download_trusted_setup_file": 0.002447204664349556 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.179116S", + "queue_time_sec": 1.179116, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "babe9119-f39a-4b61-accc-38c16ba6c6c4", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:21:25.337Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.714617S", + "compute_time_sec": 7.714617, + "compute_times": { + "total": 7.78945274092257, + "clean_up": 0.0014195535331964493, + "create_cpp": 0.0532410591840744, + "file_setup": 0.2293473482131958, + "compile_cpp": 4.6692238971591, + "create_r1cs": 0.011476732790470123, + "save_results": 0.0056864432990550995, + "get_r1cs_info": 0.0009230468422174454, + "groth16_setup": 1.4699061587452888, + "export_verification_key": 1.3452017772942781, + "download_trusted_setup_file": 0.0025169849395751953 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.109203S", + "queue_time_sec": 1.109203, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5ea5c750-afb9-46ff-9bae-cbd1566e7357", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:21:07.305Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.675740S", + "compute_time_sec": 7.67574, + "compute_times": { + "total": 7.751045668497682, + "clean_up": 0.0018131695687770844, + "create_cpp": 0.04765470325946808, + "file_setup": 0.24081012606620789, + "compile_cpp": 4.558540068566799, + "create_r1cs": 0.01800389215350151, + "save_results": 0.005974184721708298, + "get_r1cs_info": 0.0006712991744279861, + "groth16_setup": 1.373840706422925, + "export_verification_key": 1.500656010583043, + "download_trusted_setup_file": 0.002558337524533272 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.129433S", + "queue_time_sec": 1.129433, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c6fbd6ce-f956-45a4-a0e9-75daf8166515", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:19:55.212Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.062178S", + "compute_time_sec": 8.062178, + "compute_times": { + "total": 8.142503958195448, + "clean_up": 0.0018021930009126663, + "create_cpp": 0.04863681085407734, + "file_setup": 0.23515266925096512, + "compile_cpp": 5.073512123897672, + "create_r1cs": 0.018286654725670815, + "save_results": 0.004714170470833778, + "get_r1cs_info": 0.0007165037095546722, + "groth16_setup": 1.3629947770386934, + "export_verification_key": 1.3937593009322882, + "download_trusted_setup_file": 0.0024403519928455353 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.149423S", + "queue_time_sec": 1.149423, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "2b408882-c232-4fd6-b384-585e20a6828b", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:18:49.431Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.693335S", + "compute_time_sec": 7.693335, + "compute_times": { + "total": 7.781858703121543, + "clean_up": 0.0017208773642778397, + "create_cpp": 0.05256185121834278, + "file_setup": 0.2557890061289072, + "compile_cpp": 4.588302677497268, + "create_r1cs": 0.010025406256318092, + "save_results": 0.0073493290692567825, + "get_r1cs_info": 0.0005155783146619797, + "groth16_setup": 1.4648161549121141, + "export_verification_key": 1.3988297637552023, + "download_trusted_setup_file": 0.0014446470886468887 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.116293S", + "queue_time_sec": 1.116293, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "315b9559-c461-49ab-b089-885151347107", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:18:35.546Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.469497S", + "compute_time_sec": 7.469497, + "compute_times": { + "total": 7.547948880121112, + "clean_up": 0.0015904363244771957, + "create_cpp": 0.0542209018021822, + "file_setup": 0.23366319201886654, + "compile_cpp": 4.586157588288188, + "create_r1cs": 0.018297061324119568, + "save_results": 0.005786450579762459, + "get_r1cs_info": 0.0006671342998743057, + "groth16_setup": 1.364309385418892, + "export_verification_key": 1.2802996914833784, + "download_trusted_setup_file": 0.002457818016409874 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.248019S", + "queue_time_sec": 1.248019, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "65877a60-2ae1-4739-9841-d9030724c6be", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:17:44.931Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.473321S", + "compute_time_sec": 7.473321, + "compute_times": { + "total": 7.547661663964391, + "clean_up": 0.000894695520401001, + "create_cpp": 0.05381825938820839, + "file_setup": 0.24185010977089405, + "compile_cpp": 4.524175513535738, + "create_r1cs": 0.017902396619319916, + "save_results": 0.004841597750782967, + "get_r1cs_info": 0.0008537471294403076, + "groth16_setup": 1.3410304505378008, + "export_verification_key": 1.3593134097754955, + "download_trusted_setup_file": 0.0025420039892196655 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.119777S", + "queue_time_sec": 1.119777, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1d320216-2e2b-4bab-a53d-bf1f5c2aa748", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:16:28.531Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.690520S", + "compute_time_sec": 7.69052, + "compute_times": { + "total": 7.770463544875383, + "clean_up": 0.0014936216175556183, + "create_cpp": 0.05430406704545021, + "file_setup": 0.23710034973919392, + "compile_cpp": 4.83283169940114, + "create_r1cs": 0.019483311101794243, + "save_results": 0.0048837121576070786, + "get_r1cs_info": 0.0006661657243967056, + "groth16_setup": 1.3555313758552074, + "export_verification_key": 1.2612487897276878, + "download_trusted_setup_file": 0.0024483725428581238 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M05.453395S", + "queue_time_sec": 5.453395, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5ef858ca-61e8-4d2b-a44c-7648541e3083", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:16:22.368Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.866076S", + "compute_time_sec": 7.866076, + "compute_times": { + "total": 7.941894210875034, + "clean_up": 0.0015988927334547043, + "create_cpp": 0.047808632254600525, + "file_setup": 0.27344413474202156, + "compile_cpp": 4.95066586881876, + "create_r1cs": 0.018682880327105522, + "save_results": 0.005130548030138016, + "get_r1cs_info": 0.0007092785090208054, + "groth16_setup": 1.3249204363673925, + "export_verification_key": 1.3161130715161562, + "download_trusted_setup_file": 0.0024131685495376587 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M02.535538S", + "queue_time_sec": 2.535538, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "e758cd22-69a0-47cd-94bd-ba6bef3abf15", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:16:14.715Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.791801S", + "compute_time_sec": 7.791801, + "compute_times": { + "total": 7.869745476171374, + "clean_up": 0.001745712012052536, + "create_cpp": 0.05209941044449806, + "file_setup": 0.2489724848419428, + "compile_cpp": 4.845416411757469, + "create_r1cs": 0.019992178305983543, + "save_results": 0.005489939823746681, + "get_r1cs_info": 0.0008604265749454498, + "groth16_setup": 1.321467338129878, + "export_verification_key": 1.3704753294587135, + "download_trusted_setup_file": 0.002767615020275116 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.134289S", + "queue_time_sec": 1.134289, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "faf304c4-d22c-4116-ad67-01983bac2285", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:13:40.405Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.405829S", + "compute_time_sec": 7.405829, + "compute_times": { + "total": 7.476599719375372, + "clean_up": 0.0016632992774248123, + "create_cpp": 0.047042084857821465, + "file_setup": 0.2487345952540636, + "compile_cpp": 4.6313931327313185, + "create_r1cs": 0.015436878427863121, + "save_results": 0.0051026009023189545, + "get_r1cs_info": 0.0007460527122020721, + "groth16_setup": 1.2485730070620775, + "export_verification_key": 1.274957099929452, + "download_trusted_setup_file": 0.002432204782962799 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.131337S", + "queue_time_sec": 1.131337, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "b1500d6d-b1c0-438e-b090-8fac9563ec1b", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:13:12.201Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.489214S", + "compute_time_sec": 7.489214, + "compute_times": { + "total": 7.565977169200778, + "clean_up": 0.0016220677644014359, + "create_cpp": 0.0601615309715271, + "file_setup": 0.23689182102680206, + "compile_cpp": 4.628598712384701, + "create_r1cs": 0.01757240854203701, + "save_results": 0.005794510245323181, + "get_r1cs_info": 0.0007582679390907288, + "groth16_setup": 1.3360584639012814, + "export_verification_key": 1.2756301537156105, + "download_trusted_setup_file": 0.0024445243179798126 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.146208S", + "queue_time_sec": 1.146208, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c2fc3030-526d-4823-baea-bd372f474090", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:11:41.174Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.580861S", + "compute_time_sec": 7.580861, + "compute_times": { + "total": 7.656488731503487, + "clean_up": 0.0016867052763700485, + "create_cpp": 0.04802015610039234, + "file_setup": 0.24031525664031506, + "compile_cpp": 4.603576384484768, + "create_r1cs": 0.016298340633511543, + "save_results": 0.005427641794085503, + "get_r1cs_info": 0.0008495114743709564, + "groth16_setup": 1.44757186062634, + "export_verification_key": 1.2892759256064892, + "download_trusted_setup_file": 0.0029640905559062958 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.097627S", + "queue_time_sec": 1.097627, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "9763f817-302a-41f5-85d5-8c4f5488ebce", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:06:12.999Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.468363S", + "compute_time_sec": 7.468363, + "compute_times": { + "total": 7.544480819255114, + "clean_up": 0.0016008112579584122, + "create_cpp": 0.05341379716992378, + "file_setup": 0.22887434996664524, + "compile_cpp": 4.706471795216203, + "create_r1cs": 0.01654653809964657, + "save_results": 0.006104299798607826, + "get_r1cs_info": 0.0004962123930454254, + "groth16_setup": 1.2300675436854362, + "export_verification_key": 1.299116501584649, + "download_trusted_setup_file": 0.0012989863753318787 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.143003S", + "queue_time_sec": 1.143003, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "73333456-f100-48c2-8da1-e1b036377890", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:05:23.917Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.759975S", + "compute_time_sec": 7.759975, + "compute_times": { + "total": 7.83847594819963, + "clean_up": 0.001688338816165924, + "create_cpp": 0.04832325503230095, + "file_setup": 0.2314634695649147, + "compile_cpp": 4.819877410307527, + "create_r1cs": 0.015260979533195496, + "save_results": 0.006293922662734985, + "get_r1cs_info": 0.0006519351154565811, + "groth16_setup": 1.3941991496831179, + "export_verification_key": 1.3179172277450562, + "download_trusted_setup_file": 0.0024711433798074722 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.104250S", + "queue_time_sec": 1.10425, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c7d81255-de1e-4e97-a209-73b49b9e9da4", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:04:56.095Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.406479S", + "compute_time_sec": 7.406479, + "compute_times": { + "total": 7.483620099723339, + "clean_up": 0.001823868602514267, + "create_cpp": 0.045437244698405266, + "file_setup": 0.24590439908206463, + "compile_cpp": 4.595620075240731, + "create_r1cs": 0.016566921025514603, + "save_results": 0.005170263350009918, + "get_r1cs_info": 0.00036842189729213715, + "groth16_setup": 1.3206052239984274, + "export_verification_key": 1.2503768727183342, + "download_trusted_setup_file": 0.0012859292328357697 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.177252S", + "queue_time_sec": 1.177252, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0dda6aaa-d9dc-46ef-b188-2ac4327367b2", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:02:24.098Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.616668S", + "compute_time_sec": 7.616668, + "compute_times": { + "total": 7.693107321858406, + "clean_up": 0.0016501452773809433, + "create_cpp": 0.05231943354010582, + "file_setup": 0.23242460750043392, + "compile_cpp": 4.745099242776632, + "create_r1cs": 0.019039543345570564, + "save_results": 0.0055495090782642365, + "get_r1cs_info": 0.0005333274602890015, + "groth16_setup": 1.285587765276432, + "export_verification_key": 1.3491349909454584, + "download_trusted_setup_file": 0.0012811962515115738 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.109472S", + "queue_time_sec": 1.109472, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "71d53b72-8c92-4ac2-9e80-39a8e1e703b7", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:01:40.573Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.484601S", + "compute_time_sec": 7.484601, + "compute_times": { + "total": 7.560129789635539, + "clean_up": 0.0016574747860431671, + "create_cpp": 0.04680110327899456, + "file_setup": 0.23556585423648357, + "compile_cpp": 4.649155827239156, + "create_r1cs": 0.0172688327729702, + "save_results": 0.0043340642005205154, + "get_r1cs_info": 0.0007321778684854507, + "groth16_setup": 1.310708336532116, + "export_verification_key": 1.2910060994327068, + "download_trusted_setup_file": 0.002450576052069664 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.111989S", + "queue_time_sec": 1.111989, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6d875a79-65d5-406e-81e0-cd220fd3ffba", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:01:12.249Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.651112S", + "compute_time_sec": 7.651112, + "compute_times": { + "total": 7.727200584486127, + "clean_up": 0.0017795618623495102, + "create_cpp": 0.05026000365614891, + "file_setup": 0.2426721192896366, + "compile_cpp": 4.745914597064257, + "create_r1cs": 0.010544411838054657, + "save_results": 0.006228795275092125, + "get_r1cs_info": 0.0007463283836841583, + "groth16_setup": 1.2904645502567291, + "export_verification_key": 1.375608079135418, + "download_trusted_setup_file": 0.002477342262864113 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.123557S", + "queue_time_sec": 1.123557, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "71a278be-9aff-4ef7-aee1-d990f6d15189", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:00:46.395Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.560954S", + "compute_time_sec": 7.560954, + "compute_times": { + "total": 7.63792067207396, + "clean_up": 0.0011309515684843063, + "create_cpp": 0.05688653700053692, + "file_setup": 0.24240840040147305, + "compile_cpp": 4.653197390958667, + "create_r1cs": 0.01638108491897583, + "save_results": 0.005740107968449593, + "get_r1cs_info": 0.0008277762681245804, + "groth16_setup": 1.3475805260241032, + "export_verification_key": 1.3108154106885195, + "download_trusted_setup_file": 0.0024681556969881058 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.118023S", + "queue_time_sec": 1.118023, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "10ebc2d9-b8dd-4424-bad5-9c585a09c0c5", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:59:57.004Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.474006S", + "compute_time_sec": 7.474006, + "compute_times": { + "total": 7.551057329401374, + "clean_up": 0.0015815366059541702, + "create_cpp": 0.04650958999991417, + "file_setup": 0.2340244445949793, + "compile_cpp": 4.627846229821444, + "create_r1cs": 0.01713145151734352, + "save_results": 0.005708448588848114, + "get_r1cs_info": 0.0004803799092769623, + "groth16_setup": 1.2327740285545588, + "export_verification_key": 1.3827583715319633, + "download_trusted_setup_file": 0.001740090548992157 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.139430S", + "queue_time_sec": 1.13943, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "4b92a35a-e6f0-4f55-a632-c209333be056", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:59:11.428Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.631306S", + "compute_time_sec": 7.631306, + "compute_times": { + "total": 7.710235442966223, + "clean_up": 0.002034531906247139, + "create_cpp": 0.04852190800011158, + "file_setup": 0.24500983953475952, + "compile_cpp": 4.704880395904183, + "create_r1cs": 0.010721936821937561, + "save_results": 0.0055764298886060715, + "get_r1cs_info": 0.0006168503314256668, + "groth16_setup": 1.448454624041915, + "export_verification_key": 1.2422269843518734, + "download_trusted_setup_file": 0.0016173608601093292 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.386075S", + "queue_time_sec": 1.386075, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "29a6aa57-0453-467a-9acb-2295393d93c4", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:58:05.906Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.838875S", + "compute_time_sec": 7.838875, + "compute_times": { + "total": 7.916816979646683, + "clean_up": 0.0017937906086444855, + "create_cpp": 0.04604017175734043, + "file_setup": 0.25198566168546677, + "compile_cpp": 4.960162149742246, + "create_r1cs": 0.017025411128997803, + "save_results": 0.006269412115216255, + "get_r1cs_info": 0.0005705077201128006, + "groth16_setup": 1.3184205926954746, + "export_verification_key": 1.312853867188096, + "download_trusted_setup_file": 0.0013548657298088074 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.136460S", + "queue_time_sec": 1.13646, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "173cbf3c-0a46-440a-9e99-c883ed3e174f", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:10:36.167Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.494759S", + "compute_time_sec": 7.494759, + "compute_times": { + "total": 7.577943356707692, + "clean_up": 0.0015942566096782684, + "create_cpp": 0.046944042667746544, + "file_setup": 0.23811103031039238, + "compile_cpp": 4.708118129521608, + "create_r1cs": 0.01638900674879551, + "save_results": 0.00562669150531292, + "get_r1cs_info": 0.0006911307573318481, + "groth16_setup": 1.2832315117120743, + "export_verification_key": 1.2741688843816519, + "download_trusted_setup_file": 0.0024611055850982666 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M15.661842S", + "queue_time_sec": 15.661842, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1779a2af-5022-4a2f-8822-16e04ff9db2c", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-19T00:01:17.518Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M14.829640S", + "compute_time_sec": 14.82964, + "compute_times": { + "total": 16.11652692966163, + "clean_up": 0.00970545969903469, + "create_cpp": 0.07700999267399311, + "file_setup": 1.6147372927516699, + "compile_cpp": 7.614376271143556, + "create_r1cs": 0.154385132715106, + "save_results": 0.005050705745816231, + "get_r1cs_info": 0.0008396394550800323, + "groth16_setup": 3.3179074060171843, + "export_verification_key": 3.320323884487152, + "download_trusted_setup_file": 0.0015841908752918243 + }, + "file_size": 1719996, + "queue_time": "P0DT00H00M21.506947S", + "queue_time_sec": 21.506947, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "3b05d243-439c-4fe4-a527-aa95ee817c68", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-18T23:44:10.716Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.500698S", + "compute_time_sec": 8.500698, + "compute_times": { + "total": 9.787439923733473, + "clean_up": 0.013815293088555336, + "create_cpp": 0.06775672547519207, + "file_setup": 1.5670747924596071, + "compile_cpp": 5.217347398400307, + "create_r1cs": 0.03056485578417778, + "save_results": 0.006023731082677841, + "get_r1cs_info": 0.0007077902555465698, + "groth16_setup": 1.4515825044363737, + "export_verification_key": 1.4297321401536465, + "download_trusted_setup_file": 0.0024385377764701843 + }, + "file_size": 1719996, + "queue_time": "P0DT00H00M01.294188S", + "queue_time_sec": 1.294188, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "18835ec5-8156-4bbc-a418-96fb158d819d", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-18T23:42:13.949Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M13.803270S", + "compute_time_sec": 13.80327, + "compute_times": { + "total": 15.069168468937278, + "clean_up": 0.010122904554009438, + "create_cpp": 0.12114278227090836, + "file_setup": 1.5526539776474237, + "compile_cpp": 7.2996343690901995, + "create_r1cs": 0.07337300851941109, + "save_results": 0.10131139867007732, + "get_r1cs_info": 0.0005603395402431488, + "groth16_setup": 2.957974351942539, + "export_verification_key": 2.9508997034281492, + "download_trusted_setup_file": 0.0010457858443260193 + }, + "file_size": 1719996, + "queue_time": "P0DT00H00M01.279988S", + "queue_time_sec": 1.279988, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "640e3c12-230c-475a-881c-428b706d21c8", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-18T23:36:30.574Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M13.521983S", + "compute_time_sec": 13.521983, + "compute_times": { + "total": 14.785143690183759, + "clean_up": 0.00823935680091381, + "create_cpp": 0.10304738581180573, + "file_setup": 1.505700759589672, + "compile_cpp": 7.270766986533999, + "create_r1cs": 0.07485816441476345, + "save_results": 0.0029987990856170654, + "get_r1cs_info": 0.0006173755973577499, + "groth16_setup": 2.891835331916809, + "export_verification_key": 2.924815448001027, + "download_trusted_setup_file": 0.0017245206981897354 + }, + "file_size": 1719981, + "queue_time": "P0DT00H00M27.741822S", + "queue_time_sec": 27.741822, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "f84dc630-aca7-49a8-843b-3e52743e5493", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-17T19:35:22.108Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M13.399840S", + "compute_time_sec": 13.39984, + "compute_times": { + "total": 14.661026014015079, + "clean_up": 0.005762990564107895, + "create_cpp": 0.07418840192258358, + "file_setup": 1.5508117154240608, + "compile_cpp": 7.441567042842507, + "create_r1cs": 0.0411736685782671, + "save_results": 0.003770258277654648, + "get_r1cs_info": 0.0007237941026687622, + "groth16_setup": 2.749024560675025, + "export_verification_key": 2.7917208038270473, + "download_trusted_setup_file": 0.0016946438699960709 + }, + "file_size": 1650609, + "queue_time": "P0DT00H00M20.325028S", + "queue_time_sec": 20.325028, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "e47dfdfd-6570-4c66-ab49-d6ae79ff8fff", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "noir", + "date_created": "2023-12-17T18:49:58.483Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M04.373831S", + "compute_time_sec": 4.373831, + "compute_times": { + "total": 5.606248481199145, + "clean_up": 0.000952577218413353, + "file_setup": 1.4592411685734987, + "nargo_checks": 4.145449373871088 + }, + "file_size": 724, + "queue_time": "P0DT00H00M17.784967S", + "queue_time_sec": 17.784967, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_circuit", + "noir_version": "0.17.0" + }, + { + "circuit_id": "c813ef8c-d0aa-4c1a-aed7-8dc03175a13a", + "circuit_name": "_2noir-hi", + "project_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:44:44.083Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.215446S", + "compute_time_sec": 0.215446, + "compute_times": { + "total": 1.39835050329566, + "file_setup": 1.395031625404954, + "nargo_checks": 0.003077572211623192 + }, + "file_size": 742, + "queue_time": "P0DT00H00M01.360483S", + "queue_time_sec": 1.360483, + "uploaded_file_name": "_2noir-hi.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: nargo info stdout: stderr: Invalid package name `Hi2noi-r_Hi` found in /tmp/sindri/circuits/c813ef8c-d0aa-4c1a-aed7-8dc03175a13a_1702485885443392/code/Nargo.toml\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.17.0" + }, + { + "circuit_id": "446232af-e1f9-42fa-9bd9-f719b7ca91e3", + "circuit_name": "_2noir-hi", + "project_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:43:51.455Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.479235S", + "compute_time_sec": 1.479235, + "compute_times": { + "total": 2.6415348909795284, + "clean_up": 0.0005522631108760834, + "file_setup": 1.3729195687919855, + "nargo_checks": 1.2678131125867367 + }, + "file_size": 741, + "queue_time": "P0DT00H00M01.942949S", + "queue_time_sec": 1.942949, + "uploaded_file_name": "_2noir-hi.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "Hi2noir_Hi", + "noir_version": "0.17.0" + }, + { + "circuit_id": "022c02c4-2091-4670-ada4-33424a7cd98a", + "circuit_name": "_2noir-hi", + "project_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:43:04.488Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.415435S", + "compute_time_sec": 1.415435, + "compute_times": { + "total": 2.570197055116296, + "clean_up": 0.00041295401751995087, + "file_setup": 1.3385441917926073, + "nargo_checks": 1.2309921570122242 + }, + "file_size": 737, + "queue_time": "P0DT00H00M01.245783S", + "queue_time_sec": 1.245783, + "uploaded_file_name": "_2noir-hi.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "2noir_Hi", + "noir_version": "0.17.0" + }, + { + "circuit_id": "af8ed999-07b8-4bc2-b6b6-676c21b36b20", + "circuit_name": "_2noir-hi", + "project_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:42:44.606Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.405646S", + "compute_time_sec": 1.405646, + "compute_times": { + "total": 2.5658690985292196, + "clean_up": 0.00047394633293151855, + "file_setup": 1.3717324659228325, + "nargo_checks": 1.1934157982468605 + }, + "file_size": 736, + "queue_time": "P0DT00H00M01.186038S", + "queue_time_sec": 1.186038, + "uploaded_file_name": "_2noir-hi.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "2noir_hi", + "noir_version": "0.17.0" + }, + { + "circuit_id": "cc984ebc-7fd8-4b5e-8a33-49f2205d0e21", + "circuit_name": "_2noir-hi", + "project_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:42:17.783Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.462830S", + "compute_time_sec": 1.46283, + "compute_times": { + "total": 2.6199891455471516, + "clean_up": 0.00041804835200309753, + "file_setup": 1.3820457514375448, + "nargo_checks": 1.2372824884951115 + }, + "file_size": 739, + "queue_time": "P0DT00H00M01.251790S", + "queue_time_sec": 1.25179, + "uploaded_file_name": "_2noir-hi.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "_noir_hi", + "noir_version": "0.17.0" + }, + { + "circuit_id": "4dbe8704-8810-4ea7-a170-0588aed53ba6", + "circuit_name": "_2noir-hi", + "project_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:41:44.867Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.422583S", + "compute_time_sec": 1.422583, + "compute_times": { + "total": 2.580868471413851, + "clean_up": 0.00045336224138736725, + "file_setup": 1.360721966251731, + "nargo_checks": 1.2194277700036764 + }, + "file_size": 727, + "queue_time": "P0DT00H00M01.187135S", + "queue_time_sec": 1.187135, + "uploaded_file_name": "_2noir-hi.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_hi", + "noir_version": "0.17.0" + }, + { + "circuit_id": "c58e260d-1ced-43bf-8431-deb20fb588ff", + "circuit_name": "_noir-circuit-32", + "project_name": "_noir-circuit-32", + "circuit_type": "noir", + "date_created": "2023-12-13T16:31:57.140Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.154282S", + "compute_time_sec": 6.154282, + "compute_times": { + "total": 7.310710787773132, + "clean_up": 0.00043790414929389954, + "file_setup": 1.3356177434325218, + "nargo_checks": 5.974256757646799 + }, + "file_size": 736, + "queue_time": "P0DT00H00M18.865270S", + "queue_time_sec": 18.86527, + "uploaded_file_name": "_noir-circuit-32.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit_32", + "noir_version": "0.17.0" + }, + { + "circuit_id": "007be9c5-84e1-4496-b552-e3c616e4f68d", + "circuit_name": "noir", + "project_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T20:26:39.713Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.813118S", + "compute_time_sec": 1.813118, + "compute_times": { + "total": 3.01790676638484, + "clean_up": 0.000589149072766304, + "file_setup": 1.37160237506032, + "nargo_checks": 1.6454425044357777 + }, + "file_size": 3951, + "queue_time": "P0DT00H00M01.305567S", + "queue_time_sec": 1.305567, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "noir", + "noir_version": "0.17.0" + }, + { + "circuit_id": "4f6b6be9-faec-4819-8be8-7000aeea09df", + "circuit_name": "noir", + "project_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T20:23:01.975Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M04.488323S", + "compute_time_sec": 4.488323, + "compute_times": { + "total": 5.69258569739759, + "clean_up": 0.0005774423480033875, + "file_setup": 1.3714763727039099, + "nargo_checks": 4.320127023383975 + }, + "file_size": 706, + "queue_time": "P0DT00H00M19.825139S", + "queue_time_sec": 19.825139, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "noir", + "noir_version": "0.17.0" + }, + { + "circuit_id": "4d2b059e-bce1-42ce-a46b-26f239018987", + "circuit_name": "noir", + "project_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T20:09:13.111Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M04.592621S", + "compute_time_sec": 4.592621, + "compute_times": { + "total": 5.8083343375474215, + "clean_up": 0.0006539653986692429, + "file_setup": 1.3848200682550669, + "nargo_checks": 4.422410562634468 + }, + "file_size": 3746, + "queue_time": "P0DT00H00M20.409290S", + "queue_time_sec": 20.40929, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "noir", + "noir_version": "0.17.0" + }, + { + "circuit_id": "b841e6f9-f321-4d23-af8e-04986859fb9e", + "circuit_name": "noir", + "project_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:46:56.192Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.901192S", + "compute_time_sec": 1.901192, + "compute_times": { + "total": 3.042013813741505, + "clean_up": 0.0005592899397015572, + "file_setup": 1.3641308145597577, + "nargo_checks": 1.6769273420795798 + }, + "file_size": 646, + "queue_time": "P0DT00H00M01.216309S", + "queue_time_sec": 1.216309, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "pagerank", + "noir_version": "0.17.0" + }, + { + "circuit_id": "a61a964c-5a58-4314-8ebc-7e19bf93b162", + "circuit_name": "noir", + "project_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:44:36.302Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M03.854306S", + "compute_time_sec": 3.854306, + "compute_times": { + "total": 5.005337344482541, + "clean_up": 0.0004933271557092667, + "file_setup": 1.3198325717821717, + "nargo_checks": 3.684743066318333 + }, + "file_size": 646, + "queue_time": "P0DT00H00M01.049939S", + "queue_time_sec": 1.049939, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "pagerank", + "noir_version": "0.17.0" + }, + { + "circuit_id": "ff88328c-cd73-4c7b-ad3c-ccffc318b9ac", + "circuit_name": "noir", + "project_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:44:01.042Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.321372S", + "compute_time_sec": 1.321372, + "compute_times": { + "total": 2.4821140887215734, + "file_setup": 1.3312397608533502, + "nargo_checks": 1.1506206970661879 + }, + "file_size": 649, + "queue_time": "P0DT00H00M01.147771S", + "queue_time_sec": 1.147771, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: nargo info stdout: stderr: warning: unused variable Y\n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:2:19\n │\n2 │ fn main(X: Field, Y: Field) {\n │ - unused variable \n │\n\nwarning: unused variable X\n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:2:9\n │\n2 │ fn main(X: Field, Y: Field) {\n │ - unused variable \n │\n\nerror: cannot find `x` in this scope \n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:4:12\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: cannot find `y` in this scope \n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:4:17\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nAborting due to 2 previous errors\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.17.0" + }, + { + "circuit_id": "d75863d3-4343-4692-a714-e90d4002fd4c", + "circuit_name": "noir", + "project_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:42:50.433Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.254776S", + "compute_time_sec": 1.254776, + "compute_times": { + "total": 2.4055077601224184, + "file_setup": 1.3746437635272741, + "nargo_checks": 1.0305692087858915 + }, + "file_size": 653, + "queue_time": "P0DT00H00M01.040189S", + "queue_time_sec": 1.040189, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: nargo info stdout: stderr: error: cannot find `x` in this scope \n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:4:12\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: cannot find `y` in this scope \n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:4:17\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: Expected a : but found X\n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:2:17\n │\n2 │ fn main(private X: Field, public Y: Field) {\n │ -\n │\n\nAborting due to 3 previous errors\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.17.0" + }, + { + "circuit_id": "872f59ef-992c-41ef-a01f-0b856af48bba", + "circuit_name": "noir", + "project_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:40:12.889Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.165442S", + "compute_time_sec": 2.165442, + "compute_times": { + "total": 3.31729419529438, + "file_setup": 1.312557090073824, + "nargo_checks": 2.004337651655078 + }, + "file_size": 642, + "queue_time": "P0DT00H00M18.785446S", + "queue_time_sec": 18.785446, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: nargo info stdout: stderr: warning: Unused expression result of type bool\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ ------\n │\n\nerror: cannot find `enforce` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:5\n │\n4 │ enforce X == Y;\n │ ------- not found in this scope\n │\n\nerror: cannot find `X` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ - not found in this scope\n │\n\nerror: cannot find `Y` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:18\n │\n4 │ enforce X == Y;\n │ - not found in this scope\n │\n\nerror: Expected a : but found X\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:2:17\n │\n2 │ fn main(private X: Field, public Y: Field) {\n │ -\n │\n\nerror: Expected a ; separating these two statements\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ -\n │\n\nAborting due to 5 previous errors\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.17.0" + }, + { + "circuit_id": "e098c8a0-930e-4efe-9d52-1172682b8a5f", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:14:03.406Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.700449S", + "compute_time_sec": 2.700449, + "compute_times": { + "total": 3.862834582105279, + "clean_up": 0.0048230309039354324, + "file_setup": 1.4248666781932116, + "create_r1cs": 0.019674228504300117, + "create_wasm": 0.02921307645738125, + "save_results": 0.003329528495669365, + "get_r1cs_info": 0.00027392804622650146, + "groth16_setup": 1.1982815023511648, + "export_verification_key": 1.1812070365995169, + "download_trusted_setup_file": 0.0009372644126415253 + }, + "file_size": 1537235, + "queue_time": "P0DT00H00M01.240923S", + "queue_time_sec": 1.240923, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "a45c4c1f-dcaa-4018-8de5-dd567d12c730", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:12:15.898Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.249043S", + "compute_time_sec": 7.249043, + "compute_times": { + "total": 8.408733254298568, + "clean_up": 0.006613824516534805, + "create_cpp": 0.05350269004702568, + "file_setup": 1.4143117368221283, + "compile_cpp": 4.4514400865882635, + "create_r1cs": 0.020590879023075104, + "save_results": 0.002988070249557495, + "get_r1cs_info": 0.00036310404539108276, + "groth16_setup": 1.2632708046585321, + "export_verification_key": 1.1944759152829647, + "download_trusted_setup_file": 0.0009543616324663162 + }, + "file_size": 1719868, + "queue_time": "P0DT00H00M01.325923S", + "queue_time_sec": 1.325923, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "b7579bcc-2c6b-4130-b4da-5563ff1c4a6d", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:08:10.932Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.128823S", + "compute_time_sec": 7.128823, + "compute_times": { + "total": 8.290217800065875, + "clean_up": 0.006579896435141563, + "create_cpp": 0.049633922055363655, + "file_setup": 1.407272644340992, + "compile_cpp": 4.411186024546623, + "create_r1cs": 0.020449023693799973, + "save_results": 0.0031916871666908264, + "get_r1cs_info": 0.0003460422158241272, + "groth16_setup": 1.1822046767920256, + "export_verification_key": 1.2081128470599651, + "download_trusted_setup_file": 0.0009996052831411362 + }, + "file_size": 1719871, + "queue_time": "P0DT00H00M01.176634S", + "queue_time_sec": 1.176634, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "8de8feb9-7fd1-4e03-a6b2-1a80af500002", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:03:13.779Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.214778S", + "compute_time_sec": 0.214778, + "compute_times": { + "total": 1.39355612359941, + "create_cpp": 0.005528604611754417, + "file_setup": 1.387480080127716 + }, + "file_size": 1086, + "queue_time": "P0DT00H00M01.091083S", + "queue_time_sec": 1.091083, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/8de8feb9-7fd1-4e03-a6b2-1a80af500002_1701550994869957 --c /tmp/sindri/circuits/8de8feb9-7fd1-4e03-a6b2-1a80af500002_1701550994869957/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "60381cad-bfeb-4d69-9305-eede3772e693", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:54:52.720Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.127570S", + "compute_time_sec": 7.12757, + "compute_times": { + "total": 8.300101362168789, + "clean_up": 0.006741989403963089, + "create_cpp": 0.04977302439510822, + "file_setup": 1.3937485367059708, + "compile_cpp": 4.4108633529394865, + "create_r1cs": 0.020317360758781433, + "save_results": 0.003299059346318245, + "get_r1cs_info": 0.0003479979932308197, + "groth16_setup": 1.2352007273584604, + "export_verification_key": 1.1786142773926258, + "download_trusted_setup_file": 0.0009277686476707458 + }, + "file_size": 1720407, + "queue_time": "P0DT00H00M01.180095S", + "queue_time_sec": 1.180095, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "f2231fe1-b8db-4795-81a1-e9cad676eeb0", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:54:30.461Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.186269S", + "compute_time_sec": 7.186269, + "compute_times": { + "total": 8.347925985231996, + "clean_up": 0.006883986294269562, + "create_cpp": 0.055882176384329796, + "file_setup": 1.3711591251194477, + "compile_cpp": 4.481259575113654, + "create_r1cs": 0.020169200375676155, + "save_results": 0.003566296771168709, + "get_r1cs_info": 0.00035143643617630005, + "groth16_setup": 1.192156182602048, + "export_verification_key": 1.2153031043708324, + "download_trusted_setup_file": 0.0009823162108659744 + }, + "file_size": 1720386, + "queue_time": "P0DT00H00M01.111650S", + "queue_time_sec": 1.11165, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "413e6948-2e3f-4357-a1cc-caac91ed2bf4", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:51:38.256Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.180372S", + "compute_time_sec": 0.180372, + "compute_times": { + "total": 1.3365695010870695, + "create_cpp": 0.005229467526078224, + "file_setup": 1.331127068027854 + }, + "file_size": 4524, + "queue_time": "P0DT00H00M01.087627S", + "queue_time_sec": 1.087627, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/413e6948-2e3f-4357-a1cc-caac91ed2bf4_1701550299344002 --c /tmp/sindri/circuits/413e6948-2e3f-4357-a1cc-caac91ed2bf4_1701550299344002/code/circuit.circom stdout: stderr: error[P1014]: The file ./node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "c4d34eae-cd67-442f-a268-05cee221ff34", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:51:05.065Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.227270S", + "compute_time_sec": 0.22727, + "compute_times": { + "total": 1.387567725032568, + "create_cpp": 0.005518514662981033, + "file_setup": 1.3818144612014294 + }, + "file_size": 4516, + "queue_time": "P0DT00H00M01.200424S", + "queue_time_sec": 1.200424, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/c4d34eae-cd67-442f-a268-05cee221ff34_1701550266266086 --c /tmp/sindri/circuits/c4d34eae-cd67-442f-a268-05cee221ff34_1701550266266086/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "965a8f4e-e2e2-40f5-a382-b06f2d2f6519", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:49:50.199Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.208167S", + "compute_time_sec": 0.208167, + "compute_times": { + "total": 1.3689671531319618, + "create_cpp": 0.005460506305098534, + "file_setup": 1.3632374834269285 + }, + "file_size": 4516, + "queue_time": "P0DT00H00M01.304207S", + "queue_time_sec": 1.304207, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/965a8f4e-e2e2-40f5-a382-b06f2d2f6519_1701550191503467 --c /tmp/sindri/circuits/965a8f4e-e2e2-40f5-a382-b06f2d2f6519_1701550191503467/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "a1739a89-37ba-465b-bba6-e649cfda01ab", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:47:15.011Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.174086S", + "compute_time_sec": 0.174086, + "compute_times": { + "total": 1.3330576121807098, + "create_cpp": 0.005246447399258614, + "file_setup": 1.3275200203061104 + }, + "file_size": 4483, + "queue_time": "P0DT00H00M19.864284S", + "queue_time_sec": 19.864284, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511 --c /tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511/code/circuit.circom':12:13\n │\n12 │ IsEqual isEqualCircuit();\n │ ^^^^^^^^^^^^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "0e5ab1b4-82b6-43ce-9454-637729e5ddef", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:05:13.309Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.546964S", + "compute_time_sec": 2.546964, + "compute_times": { + "total": 3.7097523529082537, + "clean_up": 0.0005107801407575607, + "file_setup": 1.3446728140115738, + "create_r1cs": 0.007440237328410149, + "create_wasm": 0.016755376011133194, + "save_results": 0.0036186836659908295, + "get_r1cs_info": 0.00025043077766895294, + "groth16_setup": 1.1559293158352375, + "export_verification_key": 1.1794348638504744, + "download_trusted_setup_file": 0.0008941646665334702 + }, + "file_size": 54024, + "queue_time": "P0DT00H00M01.209301S", + "queue_time_sec": 1.209301, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "af818f7d-cf8c-4bab-a30f-57a5d9c73d73", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:03:06.093Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.578866S", + "compute_time_sec": 2.578866, + "compute_times": { + "total": 3.752036551013589, + "clean_up": 0.0005340799689292908, + "file_setup": 1.3582166992127895, + "create_r1cs": 0.007758324965834618, + "create_wasm": 0.01886793226003647, + "save_results": 0.0029870178550481796, + "get_r1cs_info": 0.0002993810921907425, + "groth16_setup": 1.1675188429653645, + "export_verification_key": 1.1944289654493332, + "download_trusted_setup_file": 0.0009995810687541962 + }, + "file_size": 54024, + "queue_time": "P0DT00H00M19.449170S", + "queue_time_sec": 19.44917, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "4272b319-f1eb-400d-a6a2-ef1cf93603fa", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T19:28:31.237Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.697079S", + "compute_time_sec": 2.697079, + "compute_times": { + "total": 3.860771119594574, + "clean_up": 0.0005786605179309845, + "file_setup": 1.3233154714107513, + "create_r1cs": 0.007670976221561432, + "create_wasm": 0.017503729090094566, + "save_results": 0.04876627214252949, + "get_r1cs_info": 0.0002490133047103882, + "groth16_setup": 1.2176049146801233, + "export_verification_key": 1.2436372973024845, + "download_trusted_setup_file": 0.0010085124522447586 + }, + "file_size": 54024, + "queue_time": "P0DT00H00M45.887615S", + "queue_time_sec": 45.887615, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "7a45ae5e-93da-449a-a1af-7f1a4b45bd1b", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:31:32.434Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.383253S", + "compute_time_sec": 2.383253, + "compute_times": { + "total": 3.5439179949462414, + "clean_up": 0.0006380276754498482, + "file_setup": 1.3339016744866967, + "create_r1cs": 0.007884668186306953, + "create_wasm": 0.01797499507665634, + "save_results": 0.004143344238400459, + "get_r1cs_info": 0.000565793365240097, + "groth16_setup": 1.0339104048907757, + "export_verification_key": 1.1432477626949549, + "download_trusted_setup_file": 0.0013524582609534264 + }, + "file_size": 54025, + "queue_time": "P0DT00H00M01.183641S", + "queue_time_sec": 1.183641, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "a5e1593c-1c43-4d3f-9999-ebc859fbf1b2", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:27:06.804Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.387682S", + "compute_time_sec": 7.387682, + "compute_times": { + "total": 8.548618336208165, + "clean_up": 0.0012578116729855537, + "create_cpp": 0.04181432072073221, + "file_setup": 1.3276818674057722, + "compile_cpp": 5.035406060516834, + "create_r1cs": 0.008279835805296898, + "save_results": 0.003593659959733486, + "get_r1cs_info": 0.0006254948675632477, + "groth16_setup": 1.091116052120924, + "export_verification_key": 1.0372483730316162, + "download_trusted_setup_file": 0.0012065665796399117 + }, + "file_size": 229069, + "queue_time": "P0DT00H00M18.717720S", + "queue_time_sec": 18.71772, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "31e748d0-b940-4dd3-838c-d47f7857e792", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:16:12.963Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.167528S", + "compute_time_sec": 0.167528, + "compute_times": { + "total": 1.3633314277976751, + "create_cpp": 0.005508816801011562, + "file_setup": 1.3575280215591192 + }, + "file_size": 3143, + "queue_time": "P0DT00H00M01.187746S", + "queue_time_sec": 1.187746, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624 --c /tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624/code/circuit.circom':10:19\n │\n10 │ isEqual <== X === Y;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:16:02.472Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.364457S", + "compute_time_sec": 0.364457, + "compute_times": { + "total": 1.5177692053839564, + "create_cpp": 0.0061752675101161, + "file_setup": 1.5113406758755445 + }, + "file_size": 3149, + "queue_time": "P0DT00H00M01.273971S", + "queue_time_sec": 1.273971, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185 --c /tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185/code/circuit.circom':10:5\n │\n10 │ isEqual <== (X - Y) * (X - Y) == 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "77122cb7-d367-4aec-af7e-6a416e40c9fd", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:14:05.849Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.285739S", + "compute_time_sec": 0.285739, + "compute_times": { + "total": 1.433143719099462, + "create_cpp": 0.00570196658372879, + "file_setup": 1.4271633345633745 + }, + "file_size": 3146, + "queue_time": "P0DT00H00M01.368079S", + "queue_time_sec": 1.368079, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573 --c /tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573/code/circuit.circom':10:5\n │\n10 │ isEqual <== (X - Y) * (X - Y) == 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "0b6844b4-2090-4ccb-a806-7a25c3e8d4f3", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:11:33.616Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.190295S", + "compute_time_sec": 0.190295, + "compute_times": { + "total": 1.3479114715009928, + "create_cpp": 0.006716226227581501, + "file_setup": 1.3409330770373344 + }, + "file_size": 3148, + "queue_time": "P0DT00H00M01.174311S", + "queue_time_sec": 1.174311, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791 --c /tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791/code/circuit.circom':10:35\n │\n10 │ isEqual <== (X - Y) * (X - Y) === 0;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:09:43.690Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.180634S", + "compute_time_sec": 0.180634, + "compute_times": { + "total": 1.3301707739010453, + "create_cpp": 0.00672531221061945, + "file_setup": 1.3231740267947316 + }, + "file_size": 3140, + "queue_time": "P0DT00H00M01.267544S", + "queue_time_sec": 1.267544, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637 --c /tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637/code/circuit.circom':10:5\n │\n10 │ isEqual <== X == Y;\n │ ^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "84746bbc-80a8-4edf-845f-5d533b42d48f", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:08:33.991Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.182958S", + "compute_time_sec": 0.182958, + "compute_times": { + "total": 1.3482676716521382, + "create_cpp": 0.005651121959090233, + "file_setup": 1.3422273648902774 + }, + "file_size": 3141, + "queue_time": "P0DT00H00M23.976753S", + "queue_time_sec": 23.976753, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436 --c /tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom stdout: stderr: error[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == y;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == y;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "ad481f61-e11e-4c34-b0a6-69d41d0734bd", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:48:47.509Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.247686S", + "compute_time_sec": 0.247686, + "compute_times": { + "total": 1.4311082614585757, + "create_cpp": 0.0059531861916184425, + "file_setup": 1.4248412810266018 + }, + "file_size": 3144, + "queue_time": "P0DT00H00M01.440336S", + "queue_time_sec": 1.440336, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610 --c /tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom stdout: stderr: error[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:47:48.347Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.186337S", + "compute_time_sec": 0.186337, + "compute_times": { + "total": 1.3291292237117887, + "create_cpp": 0.005445321090519428, + "file_setup": 1.3232828453183174 + }, + "file_size": 3144, + "queue_time": "P0DT00H00M01.389798S", + "queue_time_sec": 1.389798, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860 --c /tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom stdout: stderr: error[T2021]: Calling symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':13:31\n │\n13 │ component main {public [Y]} = sudoku();\n │ ^^^^^^^^ Calling unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "de05d443-3491-48f6-891a-ba4ffc60cb74", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:47:16.025Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.203844S", + "compute_time_sec": 0.203844, + "compute_times": { + "total": 1.358934978954494, + "create_cpp": 0.005131745710968971, + "file_setup": 1.3535515246912837 + }, + "file_size": 3147, + "queue_time": "P0DT00H00M01.239620S", + "queue_time_sec": 1.23962, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759 --c /tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759/code/circuit.circom':10:19\n │\n10 │ isEqual <== a === b;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "c2c49d55-ce1e-45fd-a030-afac71697699", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:44:43.907Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.211198S", + "compute_time_sec": 0.211198, + "compute_times": { + "total": 1.3726867232471704, + "create_cpp": 0.04041997902095318, + "file_setup": 1.3318777102977037 + }, + "file_size": 3118, + "queue_time": "P0DT00H00M21.285690S", + "queue_time_sec": 21.28569, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778 --c /tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778/code/circuit.circom':8:19\n │\n8 │ isEqual <== a === b;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", + "circuit_name": "sudoku", + "project_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:58:52.961Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M30.485776S", + "compute_time_sec": 30.485776, + "compute_times": { + "total": 31.713325195014477, + "clean_up": 0.0050907619297504425, + "create_cpp": 0.5502202846109867, + "file_setup": 1.4041321221739054, + "compile_cpp": 8.600912608206272, + "create_r1cs": 0.5660600401461124, + "save_results": 0.015263739973306656, + "get_r1cs_info": 0.0007791165262460709, + "groth16_setup": 18.966865327209234, + "export_verification_key": 1.5605580545961857, + "download_trusted_setup_file": 0.043034087866544724 + }, + "file_size": 7382369, + "queue_time": "P0DT00H00M01.531790S", + "queue_time_sec": 1.53179, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 + }, + { + "circuit_id": "f54fb760-6683-4648-8c21-b3e806ed4cf8", + "circuit_name": "sudoku", + "project_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:57:39.629Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M30.503827S", + "compute_time_sec": 30.503827, + "compute_times": { + "total": 31.731675423681736, + "clean_up": 0.005224447697401047, + "create_cpp": 0.5869219042360783, + "file_setup": 1.396010784432292, + "compile_cpp": 8.755487740039825, + "create_r1cs": 0.6137677505612373, + "save_results": 0.015961000695824623, + "get_r1cs_info": 0.0007797814905643463, + "groth16_setup": 18.781834876164794, + "export_verification_key": 1.5326797477900982, + "download_trusted_setup_file": 0.04255225136876106 + }, + "file_size": 7382369, + "queue_time": "P0DT00H00M01.329617S", + "queue_time_sec": 1.329617, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 + }, + { + "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", + "circuit_name": "sudoku", + "project_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:53:41.285Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M29.404746S", + "compute_time_sec": 29.404746, + "compute_times": { + "total": 30.63611113280058, + "clean_up": 0.004741033539175987, + "create_cpp": 0.5701096802949905, + "file_setup": 1.4058604761958122, + "compile_cpp": 8.18474044650793, + "create_r1cs": 0.5578694771975279, + "save_results": 0.012727703899145126, + "get_r1cs_info": 0.0007434040307998657, + "groth16_setup": 18.383400244638324, + "export_verification_key": 1.4725701548159122, + "download_trusted_setup_file": 0.042938267812132835 + }, + "file_size": 7382369, + "queue_time": "P0DT00H00M01.393016S", + "queue_time_sec": 1.393016, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 + }, + { + "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", + "circuit_name": "sudoku", + "project_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:50:43.511Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M28.987369S", + "compute_time_sec": 28.987369, + "compute_times": { + "total": 30.219565767794847, + "clean_up": 0.005328845232725143, + "create_cpp": 0.5412574652582407, + "file_setup": 1.408054981380701, + "compile_cpp": 7.979971516877413, + "create_r1cs": 0.5340761709958315, + "save_results": 0.10810003615915775, + "get_r1cs_info": 0.0008541643619537354, + "groth16_setup": 18.02999261394143, + "export_verification_key": 1.5689898952841759, + "download_trusted_setup_file": 0.04256066307425499 + }, + "file_size": 7382369, + "queue_time": "P0DT00H01M13.815898S", + "queue_time_sec": 73.815898, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 + }, + { + "circuit_id": "e4018ec7-7be6-4f32-b4b2-226482dbeaeb", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "gnark", + "date_created": "2023-12-02T00:28:21.086Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M12.293107S", + "compute_time_sec": 12.293107, + "compute_times": { + "total": 1.540343570522964, + "file_setup": 1.5400111814960837 + }, + "file_size": 3876, + "queue_time": "P0DT00H00M01.149716S", + "queue_time_sec": 1.149716, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # github.com/sindri-labs/gnark-scaffold/example\ncircuit/mycircuit.go:22:6: api.AssertBadStuffHereWillNotWorkIsEqual undefined (type frontend.API has no field or method AssertBadStuffHereWillNotWorkIsEqual)\n", + "curve": "bls24-315", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "e7d8a957-a820-4d7d-b75c-9fd4bb384c24", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "gnark", + "date_created": "2023-12-02T00:27:16.183Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M16.323835S", + "compute_time_sec": 16.323835, + "compute_times": { + "total": 17.493196861818433, + "compile": 15.894271181896329, + "clean_up": 0.06409060023725033, + "file_setup": 1.479825496673584, + "save_results": 0.030155125074088573, + "compile_r1cs_and_keygen": 0.024464260786771774 + }, + "file_size": 19740582, + "queue_time": "P0DT00H00M20.294201S", + "queue_time_sec": 20.294201, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bls24-315", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "1af09136-a77b-4db4-a5f1-cb295117b118", + "circuit_name": "gnark", + "project_name": "gnark", + "circuit_type": "gnark", + "date_created": "2023-12-02T00:02:34.146Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M12.571758S", + "compute_time_sec": 12.571758, + "compute_times": { + "total": 13.761676067486405, + "compile": 12.108159688301384, + "clean_up": 0.0739858876913786, + "file_setup": 1.5122289564460516, + "save_results": 0.0421032914891839, + "compile_r1cs_and_keygen": 0.02487844880670309 + }, + "file_size": 19740713, + "queue_time": "P0DT00H00M01.177760S", + "queue_time_sec": 1.17776, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bw6-633", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "27921799-4d7c-4a13-810b-f1cd17d33006", + "circuit_name": "gnark", + "project_name": "gnark", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:54:25.971Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M15.096119S", + "compute_time_sec": 15.096119, + "compute_times": { + "total": 16.24127036239952, + "compile": 14.711085448041558, + "clean_up": 0.060433197766542435, + "file_setup": 1.4220957215875387, + "save_results": 0.03548778221011162, + "compile_r1cs_and_keygen": 0.011818661354482174 + }, + "file_size": 19740996, + "queue_time": "P0DT00H00M18.859283S", + "queue_time_sec": 18.859283, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "069ad07d-cf77-40bb-877e-39ce42135fcb", + "circuit_name": "cubic", + "project_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:30:10.306Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.119803S", + "compute_time_sec": 11.119803, + "compute_times": { + "total": 1.4363502692431211, + "file_setup": 1.4360267175361514 + }, + "file_size": 19555, + "queue_time": "P0DT00H00M01.930609S", + "queue_time_sec": 1.930609, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "1f52deb6-012a-4b75-bc60-b07eeaacfe8c", + "circuit_name": "cubic", + "project_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:26:29.959Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M13.939780S", + "compute_time_sec": 13.93978, + "compute_times": { + "total": 1.4325123187154531, + "file_setup": 1.4321166425943375 + }, + "file_size": 3976, + "queue_time": "P0DT00H00M47.459123S", + "queue_time_sec": 47.459123, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "a4b7b3cb-227d-41bf-aed0-abae2340328b", + "circuit_name": "cubic", + "project_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:11:51.697Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M13.350788S", + "compute_time_sec": 13.350788, + "compute_times": { + "total": 1.6208326760679483, + "file_setup": 1.6202213428914547 + }, + "file_size": 3976, + "queue_time": "P0DT00H00M19.954132S", + "queue_time_sec": 19.954132, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "9716abca-e862-41cf-8610-0eebdbc4cb55", + "circuit_name": "cubic", + "project_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:56:28.365Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.241851S", + "compute_time_sec": 11.241851, + "compute_times": { + "total": 12.474130183458328, + "compile": 10.825671127066016, + "clean_up": 0.061418959870934486, + "file_setup": 1.5227604731917381, + "save_results": 0.04108254425227642, + "compile_r1cs_and_keygen": 0.022699812427163124 + }, + "file_size": 19741724, + "queue_time": "P0DT00H00M01.420551S", + "queue_time_sec": 1.420551, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "d19bc706-e835-4247-920d-e2f5ade15dec", + "circuit_name": "cubic", + "project_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:55:10.340Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.246401S", + "compute_time_sec": 11.246401, + "compute_times": { + "total": 12.475918658077717, + "compile": 10.844971090555191, + "clean_up": 0.05561045743525028, + "file_setup": 1.5209588538855314, + "save_results": 0.032638829201459885, + "compile_r1cs_and_keygen": 0.021452149376273155 + }, + "file_size": 19741716, + "queue_time": "P0DT00H00M01.465348S", + "queue_time_sec": 1.465348, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "98946425-2336-4fc4-aa3b-e2dadba7a099", + "circuit_name": "cubic", + "project_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:53:46.296Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.258641S", + "compute_time_sec": 11.258641, + "compute_times": { + "total": 12.491810835897923, + "compile": 10.808460559695959, + "clean_up": 0.06728884018957615, + "file_setup": 1.5511275846511126, + "save_results": 0.04296918027102947, + "compile_r1cs_and_keygen": 0.021483000367879868 + }, + "file_size": 19741716, + "queue_time": "P0DT00H00M01.516986S", + "queue_time_sec": 1.516986, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "104caccb-063e-4457-9f93-a9578a6c105b", + "circuit_name": "cubic", + "project_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:52:51.464Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.176662S", + "compute_time_sec": 11.176662, + "compute_times": { + "total": 12.414811408147216, + "compile": 10.73251723125577, + "clean_up": 0.08182202465832233, + "file_setup": 1.5543472524732351, + "save_results": 0.023770425468683243, + "compile_r1cs_and_keygen": 0.021878626197576523 + }, + "file_size": 19741718, + "queue_time": "P0DT00H00M01.367679S", + "queue_time_sec": 1.367679, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "075a905c-d5e7-486a-b590-b4c24acd97c7", + "circuit_name": "circuit", + "project_name": "circuit", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:50:44.245Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M14.090040S", + "compute_time_sec": 14.09004, + "compute_times": { + "total": 1.543837545439601, + "file_setup": 1.5434527061879635 + }, + "file_size": 4148, + "queue_time": "P0DT00H00M21.153753S", + "queue_time_sec": 21.153753, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "ee439ae8-4371-4465-b5ee-53fb02e5a63f", + "circuit_name": "circuit", + "project_name": "circuit", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:29:14.159Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.460622S", + "compute_time_sec": 10.460622, + "compute_times": { + "total": 1.5692181382328272, + "file_setup": 1.568734273314476 + }, + "file_size": 4148, + "queue_time": "P0DT00H00M01.442896S", + "queue_time_sec": 1.442896, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "5a836785-e3f6-45ea-91bb-0ac02083b991", + "circuit_name": "circuit", + "project_name": "circuit", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:21:25.657Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M14.046979S", + "compute_time_sec": 14.046979, + "compute_times": { + "total": 1.551876936107874, + "file_setup": 1.5510845798999071 + }, + "file_size": 4143, + "queue_time": "P0DT00H00M18.025252S", + "queue_time_sec": 18.025252, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "d296a14b-903d-4d37-bac4-88c4cc0274ef", + "circuit_name": "multiplier2", + "project_name": "multiplier2", + "circuit_type": "circom", + "date_created": "2023-12-01T19:22:16.230Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.920270S", + "compute_time_sec": 7.92027, + "compute_times": { + "total": 9.144548835232854, + "clean_up": 0.0016796644777059555, + "create_cpp": 0.05204322002828121, + "file_setup": 1.3975976463407278, + "compile_cpp": 4.545235302299261, + "create_r1cs": 0.008858315646648407, + "save_results": 0.005187435075640678, + "get_r1cs_info": 0.0006442461162805557, + "groth16_setup": 1.5628649536520243, + "export_verification_key": 1.5673195589333773, + "download_trusted_setup_file": 0.0025161877274513245 + }, + "file_size": 225511, + "queue_time": "P0DT00H00M26.442871S", + "queue_time_sec": 26.442871, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + } + ], + "rawHeaders": [ + "Content-Length", + "552543", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:36 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e646172796d556c6351415439686353307152426a0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d6765742d616c6c2d636972637569742d70726f6f66730d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172796d556c6351415439686353307152426a0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172796d556c6351415439686353307152426a0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172796d556c6351415439686353307152426a2d2d0d0a", + "status": 201, + "response": { + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-21T23:45:35.862Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Queued", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "queue_time": null, + "queue_time_sec": null, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "949", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:37 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:37 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e646172796c52735a4e5a7a6c44674f51487641380d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d70726f76652d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172796c52735a4e5a7a6c44674f51487641380d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172796c52735a4e5a7a6c44674f51487641380d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172796c52735a4e5a7a6c44674f51487641382d2d0d0a", + "status": 201, + "response": { + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-21T23:45:35.867Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Queued", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "queue_time": null, + "queue_time_sec": null, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "940", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:37 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e6461727969473779743532376451426677336c5a0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d6765742d70726f6f660d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727969473779743532376451426677336c5a0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727969473779743532376451426677336c5a0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727969473779743532376451426677336c5a2d2d0d0a", + "status": 201, + "response": { + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-21T23:45:36.293Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Queued", + "tags": [ + "from-browser-file-array-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 537, + "queue_time": null, + "queue_time_sec": null, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "936", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:37 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:37 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:38 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:38 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:38 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e646172796a424e386256584634583450694f36760d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d6765742d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172796a424e386256584634583450694f36760d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172796a424e386256584634583450694f36760d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172796a424e386256584634583450694f36762d2d0d0a", + "status": 201, + "response": { + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-21T23:45:37.727Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Queued", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, "file_size": 537, "queue_time": null, "queue_time_sec": null, @@ -1120,17 +19457,817 @@ }, "rawHeaders": [ "Content-Length", - "945", + "938", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:38 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:39 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:39 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:39 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:40 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:40 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:40 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:40 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:41 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:41 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:41 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:42 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:42 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:43 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:43 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:43 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:43 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:44 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:45 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:45 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:46 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:46 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:46 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:46 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:47 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:49 GMT", + "Wed, 21 Aug 2024 23:45:47 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -1142,58 +20279,27 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e6461727950567256654767396b70334e47764c4d0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d6765742d616c6c2d636972637569742d70726f6f66730d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727950567256654767396b70334e47764c4d0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727950567256654767396b70334e47764c4d0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e6461727950567256654767396b70334e47764c4d2d2d0d0a", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", + "body": "", + "status": 200, "response": { - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.749Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-browser-file-array-for-get-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:49 GMT", + "Wed, 21 Aug 2024 23:45:47 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -1205,58 +20311,27 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279327163416166686a68775336465065330d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d70726f76652d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279327163416166686a68775336465065330d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279327163416166686a68775336465065330d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279327163416166686a68775336465065332d2d0d0a", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", + "body": "", + "status": 200, "response": { - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.777Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-browser-file-array-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "949", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:49 GMT", + "Wed, 21 Aug 2024 23:45:47 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -1268,58 +20343,27 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279564665573333536d6f4166385053677a0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279564665573333536d6f4166385053677a0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279564665573333536d6f4166385053677a0d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279564665573333536d6f4166385053677a2d2d0d0a", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/status", + "body": "", + "status": 200, "response": { - "circuit_id": "f67aad3a-8525-4f8a-9752-4c7a18f51ef8", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.911Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-browser-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "931", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:50 GMT", + "Wed, 21 Aug 2024 23:45:48 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -1331,58 +20375,155 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e646172796e3562676676305776496d42727a4d440d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d62726f777365722d66696c652d61727261792d666f722d6765742d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172796e3562676676305776496d42727a4d440d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172796e3562676676305776496d42727a4d440d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e646172796e3562676676305776496d42727a4d442d2d0d0a", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", + "body": "", + "status": 200, "response": { - "circuit_id": "5188266a-fe2e-4bbe-9382-72907079588c", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.948Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-browser-file-array-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:48 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:49 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:49 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:49 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "947", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:50 GMT", + "Wed, 21 Aug 2024 23:45:49 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -1395,57 +20536,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8997eaad-0867-4463-b5f9-ed0e9db08c92/detail?include_verification_key=false", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", "body": "", "status": 200, "response": { - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.703Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "browser-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329622S", - "queue_time_sec": 0.329622, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "975", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:50 GMT", + "Wed, 21 Aug 2024 23:45:50 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -1458,57 +20568,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/d2cd4f1c-6161-48c4-afd0-b1367d985ec9/detail?include_verification_key=false", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/status", "body": "", "status": 200, "response": { - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.763Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329074S", - "queue_time_sec": 0.329074, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "972", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:50 GMT", + "Wed, 21 Aug 2024 23:45:50 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -1521,57 +20600,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be/detail?include_verification_key=false", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", "body": "", "status": 200, "response": { - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.777Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-browser-file-array-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "949", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:50 GMT", + "Wed, 21 Aug 2024 23:45:50 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -1584,57 +20632,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/61392931-3d99-430e-89f7-b9d84b73e637/detail?include_verification_key=false", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", "body": "", "status": 200, "response": { - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.749Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-browser-file-array-for-get-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:50 GMT", + "Wed, 21 Aug 2024 23:45:51 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -1647,57 +20664,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/5188266a-fe2e-4bbe-9382-72907079588c/detail?include_verification_key=false", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", "body": "", "status": 200, "response": { - "circuit_id": "5188266a-fe2e-4bbe-9382-72907079588c", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.948Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.343653S", - "queue_time_sec": 0.343653, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "974", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:50 GMT", + "Wed, 21 Aug 2024 23:45:51 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -1710,57 +20696,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/f67aad3a-8525-4f8a-9752-4c7a18f51ef8/detail?include_verification_key=false", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/status", "body": "", "status": 200, "response": { - "circuit_id": "f67aad3a-8525-4f8a-9752-4c7a18f51ef8", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.911Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-browser-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "931", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:50 GMT", + "Wed, 21 Aug 2024 23:45:51 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -1773,57 +20728,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8997eaad-0867-4463-b5f9-ed0e9db08c92/detail?include_verification_key=false", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", "body": "", "status": 200, "response": { - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.703Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "browser-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329622S", - "queue_time_sec": 0.329622, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "975", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:51 GMT", + "Wed, 21 Aug 2024 23:45:52 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -1836,57 +20760,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/d2cd4f1c-6161-48c4-afd0-b1367d985ec9/detail?include_verification_key=false", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", "body": "", "status": 200, "response": { - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.763Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329074S", - "queue_time_sec": 0.329074, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "972", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:51 GMT", + "Wed, 21 Aug 2024 23:45:52 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -1899,57 +20792,58 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be/detail?include_verification_key=false", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", "body": "", "status": 200, "response": { - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.777Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.651566S", - "queue_time_sec": 0.651566, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:52 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "976", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:51 GMT", + "Wed, 21 Aug 2024 23:45:52 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -1962,57 +20856,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/61392931-3d99-430e-89f7-b9d84b73e637/detail?include_verification_key=false", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", "body": "", "status": 200, "response": { - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.749Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.108182S", - "queue_time_sec": 1.108182, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "985", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:51 GMT", + "Wed, 21 Aug 2024 23:45:52 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2025,57 +20888,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/5188266a-fe2e-4bbe-9382-72907079588c/detail?include_verification_key=false", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/status", "body": "", "status": 200, "response": { - "circuit_id": "5188266a-fe2e-4bbe-9382-72907079588c", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.948Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.343653S", - "queue_time_sec": 0.343653, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "974", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:51 GMT", + "Wed, 21 Aug 2024 23:45:53 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2088,57 +20920,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/f67aad3a-8525-4f8a-9752-4c7a18f51ef8/detail?include_verification_key=false", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", "body": "", "status": 200, "response": { - "circuit_id": "f67aad3a-8525-4f8a-9752-4c7a18f51ef8", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.911Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.848532S", - "queue_time_sec": 0.848532, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:51 GMT", + "Wed, 21 Aug 2024 23:45:54 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2151,57 +20952,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8997eaad-0867-4463-b5f9-ed0e9db08c92/detail?include_verification_key=false", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", "body": "", "status": 200, "response": { - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.703Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "browser-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329622S", - "queue_time_sec": 0.329622, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "975", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:52 GMT", + "Wed, 21 Aug 2024 23:45:54 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2214,57 +20984,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/d2cd4f1c-6161-48c4-afd0-b1367d985ec9/detail?include_verification_key=false", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", "body": "", "status": 200, "response": { - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.763Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329074S", - "queue_time_sec": 0.329074, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "972", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:52 GMT", + "Wed, 21 Aug 2024 23:45:54 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2277,57 +21016,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be/detail?include_verification_key=false", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/status", "body": "", "status": 200, "response": { - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.777Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.651566S", - "queue_time_sec": 0.651566, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "976", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:53 GMT", + "Wed, 21 Aug 2024 23:45:55 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2340,57 +21048,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/f67aad3a-8525-4f8a-9752-4c7a18f51ef8/detail?include_verification_key=false", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", "body": "", "status": 200, "response": { - "circuit_id": "f67aad3a-8525-4f8a-9752-4c7a18f51ef8", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.911Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.848532S", - "queue_time_sec": 0.848532, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:53 GMT", + "Wed, 21 Aug 2024 23:45:55 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2403,57 +21080,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/61392931-3d99-430e-89f7-b9d84b73e637/detail?include_verification_key=false", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", "body": "", "status": 200, "response": { - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.749Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.108182S", - "queue_time_sec": 1.108182, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "985", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:53 GMT", + "Wed, 21 Aug 2024 23:45:55 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2466,57 +21112,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/5188266a-fe2e-4bbe-9382-72907079588c/detail?include_verification_key=false", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", "body": "", "status": 200, - "response": { - "circuit_id": "5188266a-fe2e-4bbe-9382-72907079588c", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.948Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.343653S", - "queue_time_sec": 0.343653, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "response": { + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "974", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:53 GMT", + "Wed, 21 Aug 2024 23:45:55 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2529,57 +21144,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8997eaad-0867-4463-b5f9-ed0e9db08c92/detail?include_verification_key=false", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", "body": "", "status": 200, "response": { - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.703Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "browser-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329622S", - "queue_time_sec": 0.329622, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "975", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:54 GMT", + "Wed, 21 Aug 2024 23:45:55 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2592,57 +21176,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/d2cd4f1c-6161-48c4-afd0-b1367d985ec9/detail?include_verification_key=false", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", "body": "", "status": 200, "response": { - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.763Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329074S", - "queue_time_sec": 0.329074, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "972", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:54 GMT", + "Wed, 21 Aug 2024 23:45:56 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2655,57 +21208,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be/detail?include_verification_key=false", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", "body": "", "status": 200, "response": { - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.777Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.651566S", - "queue_time_sec": 0.651566, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "976", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:54 GMT", + "Wed, 21 Aug 2024 23:45:57 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2718,57 +21240,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/f67aad3a-8525-4f8a-9752-4c7a18f51ef8/detail?include_verification_key=false", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/status", "body": "", "status": 200, "response": { - "circuit_id": "f67aad3a-8525-4f8a-9752-4c7a18f51ef8", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.911Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.848532S", - "queue_time_sec": 0.848532, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:54 GMT", + "Wed, 21 Aug 2024 23:45:57 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2781,57 +21272,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/61392931-3d99-430e-89f7-b9d84b73e637/detail?include_verification_key=false", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", "body": "", "status": 200, "response": { - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.749Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.108182S", - "queue_time_sec": 1.108182, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "985", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:54 GMT", + "Wed, 21 Aug 2024 23:45:57 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2844,57 +21304,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/5188266a-fe2e-4bbe-9382-72907079588c/detail?include_verification_key=false", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", "body": "", "status": 200, "response": { - "circuit_id": "5188266a-fe2e-4bbe-9382-72907079588c", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.948Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.343653S", - "queue_time_sec": 0.343653, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "974", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:54 GMT", + "Wed, 21 Aug 2024 23:45:57 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2907,57 +21336,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8997eaad-0867-4463-b5f9-ed0e9db08c92/detail?include_verification_key=false", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", "body": "", "status": 200, "response": { - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.703Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "browser-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329622S", - "queue_time_sec": 0.329622, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "975", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:55 GMT", + "Wed, 21 Aug 2024 23:45:58 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2970,57 +21368,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/d2cd4f1c-6161-48c4-afd0-b1367d985ec9/detail?include_verification_key=false", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", "body": "", "status": 200, "response": { - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.763Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329074S", - "queue_time_sec": 0.329074, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "972", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:55 GMT", + "Wed, 21 Aug 2024 23:45:58 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3033,57 +21400,58 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be/detail?include_verification_key=false", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", "body": "", "status": 200, "response": { - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.777Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.651566S", - "queue_time_sec": 0.651566, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:59 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "976", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:55 GMT", + "Wed, 21 Aug 2024 23:45:59 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3096,57 +21464,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/f67aad3a-8525-4f8a-9752-4c7a18f51ef8/detail?include_verification_key=false", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", "body": "", "status": 200, "response": { - "circuit_id": "f67aad3a-8525-4f8a-9752-4c7a18f51ef8", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.911Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.848532S", - "queue_time_sec": 0.848532, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:55 GMT", + "Wed, 21 Aug 2024 23:46:00 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3159,57 +21496,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/61392931-3d99-430e-89f7-b9d84b73e637/detail?include_verification_key=false", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", "body": "", "status": 200, "response": { - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.749Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.108182S", - "queue_time_sec": 1.108182, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "985", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:55 GMT", + "Wed, 21 Aug 2024 23:46:00 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3222,57 +21528,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/5188266a-fe2e-4bbe-9382-72907079588c/detail?include_verification_key=false", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/status", "body": "", "status": 200, "response": { - "circuit_id": "5188266a-fe2e-4bbe-9382-72907079588c", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.948Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.343653S", - "queue_time_sec": 0.343653, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "974", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:55 GMT", + "Wed, 21 Aug 2024 23:46:00 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3285,57 +21560,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8997eaad-0867-4463-b5f9-ed0e9db08c92/detail?include_verification_key=false", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", "body": "", "status": 200, "response": { - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.703Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "browser-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329622S", - "queue_time_sec": 0.329622, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "975", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:56 GMT", + "Wed, 21 Aug 2024 23:46:00 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3348,57 +21592,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/d2cd4f1c-6161-48c4-afd0-b1367d985ec9/detail?include_verification_key=false", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", "body": "", "status": 200, "response": { - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.763Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329074S", - "queue_time_sec": 0.329074, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "972", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:56 GMT", + "Wed, 21 Aug 2024 23:46:00 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3411,57 +21624,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be/detail?include_verification_key=false", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", "body": "", "status": 200, "response": { - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.777Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.651566S", - "queue_time_sec": 0.651566, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "976", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:56 GMT", + "Wed, 21 Aug 2024 23:46:01 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3474,57 +21656,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/f67aad3a-8525-4f8a-9752-4c7a18f51ef8/detail?include_verification_key=false", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", "body": "", "status": 200, "response": { - "circuit_id": "f67aad3a-8525-4f8a-9752-4c7a18f51ef8", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.911Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.848532S", - "queue_time_sec": 0.848532, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:57 GMT", + "Wed, 21 Aug 2024 23:46:01 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3537,57 +21688,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/61392931-3d99-430e-89f7-b9d84b73e637/detail?include_verification_key=false", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/status", "body": "", "status": 200, "response": { - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.749Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.108182S", - "queue_time_sec": 1.108182, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "985", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:57 GMT", + "Wed, 21 Aug 2024 23:46:02 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3600,57 +21720,58 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/5188266a-fe2e-4bbe-9382-72907079588c/detail?include_verification_key=false", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", "body": "", "status": 200, "response": { - "circuit_id": "5188266a-fe2e-4bbe-9382-72907079588c", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.948Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.343653S", - "queue_time_sec": 0.343653, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:46:02 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "974", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:57 GMT", + "Wed, 21 Aug 2024 23:46:02 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3663,57 +21784,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8997eaad-0867-4463-b5f9-ed0e9db08c92/detail?include_verification_key=false", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", "body": "", "status": 200, "response": { - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.703Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "browser-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329622S", - "queue_time_sec": 0.329622, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "975", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:58 GMT", + "Wed, 21 Aug 2024 23:46:02 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3726,57 +21816,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/d2cd4f1c-6161-48c4-afd0-b1367d985ec9/detail?include_verification_key=false", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", "body": "", "status": 200, "response": { - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.763Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329074S", - "queue_time_sec": 0.329074, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "972", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:58 GMT", + "Wed, 21 Aug 2024 23:46:03 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3789,57 +21848,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be/detail?include_verification_key=false", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", "body": "", "status": 200, "response": { - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.777Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.651566S", - "queue_time_sec": 0.651566, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "976", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:58 GMT", + "Wed, 21 Aug 2024 23:46:03 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3852,57 +21880,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/61392931-3d99-430e-89f7-b9d84b73e637/detail?include_verification_key=false", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", "body": "", "status": 200, "response": { - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.749Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.108182S", - "queue_time_sec": 1.108182, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "985", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:58 GMT", + "Wed, 21 Aug 2024 23:46:03 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3915,57 +21912,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/5188266a-fe2e-4bbe-9382-72907079588c/detail?include_verification_key=false", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", "body": "", "status": 200, "response": { - "circuit_id": "5188266a-fe2e-4bbe-9382-72907079588c", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.948Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.343653S", - "queue_time_sec": 0.343653, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "974", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:58 GMT", + "Wed, 21 Aug 2024 23:46:03 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3978,57 +21944,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/f67aad3a-8525-4f8a-9752-4c7a18f51ef8/detail?include_verification_key=false", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/status", "body": "", "status": 200, "response": { - "circuit_id": "f67aad3a-8525-4f8a-9752-4c7a18f51ef8", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.911Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.848532S", - "queue_time_sec": 0.848532, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:58 GMT", + "Wed, 21 Aug 2024 23:46:04 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4041,57 +21976,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8997eaad-0867-4463-b5f9-ed0e9db08c92/detail?include_verification_key=false", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", "body": "", "status": 200, "response": { - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.703Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "browser-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329622S", - "queue_time_sec": 0.329622, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "975", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:59 GMT", + "Wed, 21 Aug 2024 23:46:04 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4104,57 +22008,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/d2cd4f1c-6161-48c4-afd0-b1367d985ec9/detail?include_verification_key=false", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", "body": "", "status": 200, "response": { - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.763Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329074S", - "queue_time_sec": 0.329074, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "972", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:59 GMT", + "Wed, 21 Aug 2024 23:46:04 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4167,57 +22040,58 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be/detail?include_verification_key=false", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", "body": "", "status": 200, "response": { - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.777Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.651566S", - "queue_time_sec": 0.651566, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "In Progress" + }, + "rawHeaders": [ + "Content-Length", + "79", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:46:05 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "976", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:59 GMT", + "Wed, 21 Aug 2024 23:46:05 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4230,57 +22104,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/61392931-3d99-430e-89f7-b9d84b73e637/detail?include_verification_key=false", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", "body": "", "status": 200, "response": { - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.749Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.108182S", - "queue_time_sec": 1.108182, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "985", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:59 GMT", + "Wed, 21 Aug 2024 23:46:05 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4293,57 +22136,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/5188266a-fe2e-4bbe-9382-72907079588c/detail?include_verification_key=false", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", "body": "", "status": 200, "response": { - "circuit_id": "5188266a-fe2e-4bbe-9382-72907079588c", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.948Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.343653S", - "queue_time_sec": 0.343653, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "974", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:59 GMT", + "Wed, 21 Aug 2024 23:46:05 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4356,57 +22168,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/f67aad3a-8525-4f8a-9752-4c7a18f51ef8/detail?include_verification_key=false", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", "body": "", "status": 200, "response": { - "circuit_id": "f67aad3a-8525-4f8a-9752-4c7a18f51ef8", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.911Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.848532S", - "queue_time_sec": 0.848532, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:59 GMT", + "Wed, 21 Aug 2024 23:46:06 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4419,57 +22200,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8997eaad-0867-4463-b5f9-ed0e9db08c92/detail?include_verification_key=false", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/status", "body": "", "status": 200, "response": { - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.703Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "browser-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329622S", - "queue_time_sec": 0.329622, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "975", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:00 GMT", + "Wed, 21 Aug 2024 23:46:06 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4482,57 +22232,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/d2cd4f1c-6161-48c4-afd0-b1367d985ec9/detail?include_verification_key=false", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", "body": "", "status": 200, "response": { - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.763Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329074S", - "queue_time_sec": 0.329074, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "972", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:00 GMT", + "Wed, 21 Aug 2024 23:46:06 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4545,57 +22264,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be/detail?include_verification_key=false", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", "body": "", "status": 200, "response": { - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.777Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.651566S", - "queue_time_sec": 0.651566, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "976", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:01 GMT", + "Wed, 21 Aug 2024 23:46:07 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4608,57 +22296,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/61392931-3d99-430e-89f7-b9d84b73e637/detail?include_verification_key=false", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", "body": "", "status": 200, "response": { - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.749Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.108182S", - "queue_time_sec": 1.108182, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "985", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:01 GMT", + "Wed, 21 Aug 2024 23:46:07 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4671,57 +22328,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/5188266a-fe2e-4bbe-9382-72907079588c/detail?include_verification_key=false", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", "body": "", "status": 200, "response": { - "circuit_id": "5188266a-fe2e-4bbe-9382-72907079588c", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.948Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.343653S", - "queue_time_sec": 0.343653, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "974", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:01 GMT", + "Wed, 21 Aug 2024 23:46:07 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4734,57 +22360,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/f67aad3a-8525-4f8a-9752-4c7a18f51ef8/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "f67aad3a-8525-4f8a-9752-4c7a18f51ef8", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.911Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.848532S", - "queue_time_sec": 0.848532, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:01 GMT", + "Wed, 21 Aug 2024 23:46:07 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4797,57 +22392,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8997eaad-0867-4463-b5f9-ed0e9db08c92/detail?include_verification_key=false", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", "body": "", "status": 200, "response": { - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.703Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "browser-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329622S", - "queue_time_sec": 0.329622, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "975", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:02 GMT", + "Wed, 21 Aug 2024 23:46:07 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4860,70 +22424,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/d2cd4f1c-6161-48c4-afd0-b1367d985ec9/detail?include_verification_key=false", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", "body": "", "status": 200, "response": { - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.763Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Ready", - "tags": [ - "from-browser-file-array-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M11.187005S", - "compute_time_sec": 11.187005, - "compute_times": { - "total": 11.23036, - "clean_up": 0.04335, - "create_cpp": 0.14002, - "file_setup": 0.65654, - "compile_cpp": 5.19615, - "create_r1cs": 0.01822, - "save_results": 1.54768, - "get_r1cs_info": 0.00039, - "groth16_setup": 1.2045, - "export_verification_key": 1.19481, - "download_trusted_setup_file": 0.0012, - "solidity_contract_generation": 1.2275 - }, - "file_size": 236740, - "queue_time": "P0DT00H00M00.329074S", - "queue_time_sec": 0.329074, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": true, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "1299", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:02 GMT", + "Wed, 21 Aug 2024 23:46:08 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4936,57 +22456,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be/detail?include_verification_key=false", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", "body": "", "status": 200, "response": { - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.777Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.651566S", - "queue_time_sec": 0.651566, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "976", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:02 GMT", + "Wed, 21 Aug 2024 23:46:09 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4999,57 +22488,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/61392931-3d99-430e-89f7-b9d84b73e637/detail?include_verification_key=false", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", "body": "", "status": 200, "response": { - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.749Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.108182S", - "queue_time_sec": 1.108182, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "985", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:02 GMT", + "Wed, 21 Aug 2024 23:46:09 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5062,57 +22520,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/5188266a-fe2e-4bbe-9382-72907079588c/detail?include_verification_key=false", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", "body": "", "status": 200, "response": { - "circuit_id": "5188266a-fe2e-4bbe-9382-72907079588c", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.948Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.343653S", - "queue_time_sec": 0.343653, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "974", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:02 GMT", + "Wed, 21 Aug 2024 23:46:09 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5125,57 +22552,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/f67aad3a-8525-4f8a-9752-4c7a18f51ef8/detail?include_verification_key=false", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/status", "body": "", "status": 200, "response": { - "circuit_id": "f67aad3a-8525-4f8a-9752-4c7a18f51ef8", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.911Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.848532S", - "queue_time_sec": 0.848532, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:02 GMT", + "Wed, 21 Aug 2024 23:46:09 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5187,54 +22583,27 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/d2cd4f1c-6161-48c4-afd0-b1367d985ec9/prove", - "body": "------WebKitFormBoundarykWHGgDdBCMAvsbWl\r\nContent-Disposition: form-data; name=\"meta\"\r\n\r\n{}\r\n------WebKitFormBoundarykWHGgDdBCMAvsbWl\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundarykWHGgDdBCMAvsbWl\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundarykWHGgDdBCMAvsbWl--\r\n", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", + "body": "", + "status": 200, "response": { - "proof_id": "55ceec4b-8c11-4629-92e5-06d579935fab", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:02.639Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "994", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:02 GMT", + "Wed, 21 Aug 2024 23:46:09 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5247,53 +22616,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/55ceec4b-8c11-4629-92e5-06d579935fab/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", "body": "", "status": 200, "response": { - "proof_id": "55ceec4b-8c11-4629-92e5-06d579935fab", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:02.639Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "994", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:03 GMT", + "Wed, 21 Aug 2024 23:46:10 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5306,57 +22648,58 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8997eaad-0867-4463-b5f9-ed0e9db08c92/detail?include_verification_key=false", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", "body": "", "status": 200, "response": { - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.703Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "browser-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.329622S", - "queue_time_sec": 0.329622, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "In Progress" + }, + "rawHeaders": [ + "Content-Length", + "79", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:46:10 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "975", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:03 GMT", + "Wed, 21 Aug 2024 23:46:10 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5369,57 +22712,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be/detail?include_verification_key=false", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/status", "body": "", "status": 200, "response": { - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.777Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.651566S", - "queue_time_sec": 0.651566, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "976", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:03 GMT", + "Wed, 21 Aug 2024 23:46:11 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5432,57 +22744,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/61392931-3d99-430e-89f7-b9d84b73e637/detail?include_verification_key=false", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", "body": "", "status": 200, "response": { - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.749Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.108182S", - "queue_time_sec": 1.108182, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "985", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:03 GMT", + "Wed, 21 Aug 2024 23:46:11 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5495,70 +22776,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/5188266a-fe2e-4bbe-9382-72907079588c/detail?include_verification_key=false", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", "body": "", "status": 200, "response": { - "circuit_id": "5188266a-fe2e-4bbe-9382-72907079588c", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.948Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Ready", - "tags": [ - "from-browser-file-array-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M12.893164S", - "compute_time_sec": 12.893164, - "compute_times": { - "total": 12.93842, - "clean_up": 0.04525, - "create_cpp": 0.18975, - "file_setup": 0.61394, - "compile_cpp": 5.47301, - "create_r1cs": 0.0124, - "save_results": 1.93912, - "get_r1cs_info": 0.00039, - "groth16_setup": 1.57002, - "export_verification_key": 1.594, - "download_trusted_setup_file": 0.00131, - "solidity_contract_generation": 1.49922 - }, - "file_size": 236740, - "queue_time": "P0DT00H00M00.343653S", - "queue_time_sec": 0.343653, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": true, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "1301", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:03 GMT", + "Wed, 21 Aug 2024 23:46:11 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5571,57 +22808,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/f67aad3a-8525-4f8a-9752-4c7a18f51ef8/detail?include_verification_key=false", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", "body": "", "status": 200, "response": { - "circuit_id": "f67aad3a-8525-4f8a-9752-4c7a18f51ef8", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.911Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.848532S", - "queue_time_sec": 0.848532, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "958", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:03 GMT", + "Wed, 21 Aug 2024 23:46:12 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5634,163 +22840,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/5188266a-fe2e-4bbe-9382-72907079588c/detail?include_verification_key=true", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", "body": "", "status": 200, "response": { - "circuit_id": "5188266a-fe2e-4bbe-9382-72907079588c", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.948Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Ready", - "tags": [ - "from-browser-file-array-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M12.893164S", - "compute_time_sec": 12.893164, - "compute_times": { - "total": 12.93842, - "clean_up": 0.04525, - "create_cpp": 0.18975, - "file_setup": 0.61394, - "compile_cpp": 5.47301, - "create_r1cs": 0.0124, - "save_results": 1.93912, - "get_r1cs_info": 0.00039, - "groth16_setup": 1.57002, - "export_verification_key": 1.594, - "download_trusted_setup_file": 0.00131, - "solidity_contract_generation": 1.49922 - }, - "file_size": 236740, - "queue_time": "P0DT00H00M00.343653S", - "queue_time_sec": 0.343653, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": true, - "has_verification_key": true, - "verification_key": { - "protocol": "groth16", - "curve": "bn128", - "nPublic": 1, - "vk_alpha_1": [ - "20491192805390485299153009773594534940189261866228447918068658471970481763042", - "9383485363053290200918347156157836566562967994039712273449902621266178545958", - "1" - ], - "vk_beta_2": [ - [ - "6375614351688725206403948262868962793625744043794305715222011528459656738731", - "4252822878758300859123897981450591353533073413197771768651442665752259397132" - ], - [ - "10505242626370262277552901082094356697409835680220590971873171140371331206856", - "21847035105528745403288232691147584728191162732299865338377159692350059136679" - ], - [ - "1", - "0" - ] - ], - "vk_gamma_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_delta_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_alphabeta_12": [ - [ - [ - "2029413683389138792403550203267699914886160938906632433982220835551125967885", - "21072700047562757817161031222997517981543347628379360635925549008442030252106" - ], - [ - "5940354580057074848093997050200682056184807770593307860589430076672439820312", - "12156638873931618554171829126792193045421052652279363021382169897324752428276" - ], - [ - "7898200236362823042373859371574133993780991612861777490112507062703164551277", - "7074218545237549455313236346927434013100842096812539264420499035217050630853" - ] - ], - [ - [ - "7077479683546002997211712695946002074877511277312570035766170199895071832130", - "10093483419865920389913245021038182291233451549023025229112148274109565435465" - ], - [ - "4595479056700221319381530156280926371456704509942304414423590385166031118820", - "19831328484489333784475432780421641293929726139240675179672856274388269393268" - ], - [ - "11934129596455521040620786944827826205713621633706285934057045369193958244500", - "8037395052364110730298837004334506829870972346962140206007064471173334027475" - ] - ] - ], - "IC": [ - [ - "6819801395408938350212900248749732364821477541620635511814266536599629892365", - "9092252330033992554755034971584864587974280972948086568597554018278609861372", - "1" - ], - [ - "17882351432929302592725330552407222299541667716607588771282887857165175611387", - "18907419617206324833977586007131055763810739835484972981819026406579664278293", - "1" - ] - ] - }, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "3941", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:04 GMT", + "Wed, 21 Aug 2024 23:46:12 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5798,58 +22867,31 @@ "X-Frame-Options", "SAMEORIGIN" ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/55ceec4b-8c11-4629-92e5-06d579935fab/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", - "body": "", - "status": 200, - "response": { - "proof_id": "55ceec4b-8c11-4629-92e5-06d579935fab", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:02.639Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "994", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:04 GMT", + "Wed, 21 Aug 2024 23:46:13 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5862,70 +22904,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8997eaad-0867-4463-b5f9-ed0e9db08c92/detail?include_verification_key=false", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", "body": "", "status": 200, "response": { - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.703Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Ready", - "tags": [ - "browser-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M13.583827S", - "compute_time_sec": 13.583827, - "compute_times": { - "total": 13.62581, - "clean_up": 0.04198, - "create_cpp": 0.19754, - "file_setup": 0.67346, - "compile_cpp": 4.9592, - "create_r1cs": 0.01382, - "save_results": 2.04357, - "get_r1cs_info": 0.00046, - "groth16_setup": 1.41593, - "export_verification_key": 1.45706, - "download_trusted_setup_file": 1.36875, - "solidity_contract_generation": 1.45404 - }, - "file_size": 236740, - "queue_time": "P0DT00H00M00.329622S", - "queue_time_sec": 0.329622, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": true, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "1304", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:04 GMT", + "Wed, 21 Aug 2024 23:46:13 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5938,70 +22936,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be/detail?include_verification_key=false", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", "body": "", "status": 200, "response": { - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.777Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Ready", - "tags": [ - "from-browser-file-array-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M13.763466S", - "compute_time_sec": 13.763466, - "compute_times": { - "total": 13.77561, - "clean_up": 0.01214, - "create_cpp": 0.22932, - "file_setup": 0.70657, - "compile_cpp": 6.53095, - "create_r1cs": 0.01404, - "save_results": 1.38455, - "get_r1cs_info": 0.00042, - "groth16_setup": 1.63625, - "export_verification_key": 1.67075, - "download_trusted_setup_file": 0.00141, - "solidity_contract_generation": 1.58921 - }, - "file_size": 236740, - "queue_time": "P0DT00H00M00.651566S", - "queue_time_sec": 0.651566, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": true, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "1306", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:05 GMT", + "Wed, 21 Aug 2024 23:46:13 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6014,57 +22968,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/61392931-3d99-430e-89f7-b9d84b73e637/detail?include_verification_key=false", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", "body": "", "status": 200, "response": { - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.749Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.108182S", - "queue_time_sec": 1.108182, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "985", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:05 GMT", + "Wed, 21 Aug 2024 23:46:14 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6077,57 +23000,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/f67aad3a-8525-4f8a-9752-4c7a18f51ef8/detail?include_verification_key=false", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/status", "body": "", "status": 200, "response": { - "circuit_id": "f67aad3a-8525-4f8a-9752-4c7a18f51ef8", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.911Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.848532S", - "queue_time_sec": 0.848532, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", + "status": "Ready" }, "rawHeaders": [ "Content-Length", - "958", + "73", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:05 GMT", + "Wed, 21 Aug 2024 23:46:14 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6139,54 +23031,27 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/circom-multiplier2:browser-create-proof-multiplier2-circuit/prove", - "body": "------WebKitFormBoundaryiQGyvZ7AtiURXCkX\r\nContent-Disposition: form-data; name=\"meta\"\r\n\r\n{}\r\n------WebKitFormBoundaryiQGyvZ7AtiURXCkX\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundaryiQGyvZ7AtiURXCkX\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundaryiQGyvZ7AtiURXCkX--\r\n", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", + "body": "", + "status": 200, "response": { - "proof_id": "c2636e26-e3fb-4c5b-abc8-2d2573c4300b", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:05.241Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "994", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:05 GMT", + "Wed, 21 Aug 2024 23:46:14 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6198,54 +23063,71 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be/prove", - "body": "------WebKitFormBoundarysByO4RDp9BZs6NtC\r\nContent-Disposition: form-data; name=\"meta\"\r\n\r\n{}\r\n------WebKitFormBoundarysByO4RDp9BZs6NtC\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundarysByO4RDp9BZs6NtC\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundarysByO4RDp9BZs6NtC--\r\n", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/423ecbcd-3551-463b-83af-1f99b009c1b5/detail?include_verification_key=false", + "body": "", + "status": 200, "response": { - "proof_id": "ce4b212b-90da-40b5-8574-6b328b742afb", + "circuit_id": "423ecbcd-3551-463b-83af-1f99b009c1b5", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:05.399Z", + "date_created": "2024-08-21T23:45:35.878Z", "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.964735S", + "compute_time_sec": 7.964735, + "compute_times": { + "total": 7.99144, + "clean_up": 0.0267, + "create_cpp": 0.14816, + "file_setup": 0.41709, + "compile_cpp": 3.29617, + "create_r1cs": 0.00978, + "save_results": 0.73201, + "get_r1cs_info": 0.00026, + "groth16_setup": 0.81859, + "export_verification_key": 0.81793, + "download_trusted_setup_file": 0.90156, + "solidity_contract_generation": 0.8232 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M29.894098S", + "queue_time_sec": 29.894098, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, "has_verification_key": true, "verification_key": null, "warnings": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "994", + "1276", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:05 GMT", + "Wed, 21 Aug 2024 23:46:15 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6258,53 +23140,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/c2636e26-e3fb-4c5b-abc8-2d2573c4300b/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", "body": "", "status": 200, "response": { - "proof_id": "c2636e26-e3fb-4c5b-abc8-2d2573c4300b", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:05.241Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "994", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:05 GMT", + "Wed, 21 Aug 2024 23:46:15 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6317,53 +23172,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/55ceec4b-8c11-4629-92e5-06d579935fab/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", "body": "", "status": 200, "response": { - "proof_id": "55ceec4b-8c11-4629-92e5-06d579935fab", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:02.639Z", - "meta": {}, - "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M01.895510S", - "queue_time_sec": 1.89551, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "1020", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:05 GMT", + "Wed, 21 Aug 2024 23:46:16 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6376,53 +23204,58 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/ce4b212b-90da-40b5-8574-6b328b742afb/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", "body": "", "status": 200, "response": { - "proof_id": "ce4b212b-90da-40b5-8574-6b328b742afb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:05.399Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "In Progress" + }, + "rawHeaders": [ + "Content-Length", + "79", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:46:16 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "994", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:05 GMT", + "Wed, 21 Aug 2024 23:46:18 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6435,57 +23268,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/61392931-3d99-430e-89f7-b9d84b73e637/detail?include_verification_key=false", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/status", "body": "", "status": 200, "response": { - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.749Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.108182S", - "queue_time_sec": 1.108182, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "status": "Ready" }, "rawHeaders": [ "Content-Length", - "985", + "73", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:06 GMT", + "Wed, 21 Aug 2024 23:46:18 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6498,57 +23300,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/f67aad3a-8525-4f8a-9752-4c7a18f51ef8/detail?include_verification_key=false", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", "body": "", "status": 200, "response": { - "circuit_id": "f67aad3a-8525-4f8a-9752-4c7a18f51ef8", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.911Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.848532S", - "queue_time_sec": 0.848532, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "958", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:06 GMT", + "Wed, 21 Aug 2024 23:46:20 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6561,53 +23332,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/55ceec4b-8c11-4629-92e5-06d579935fab/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", "body": "", "status": 200, "response": { - "proof_id": "55ceec4b-8c11-4629-92e5-06d579935fab", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:02.639Z", - "meta": {}, - "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M01.895510S", - "queue_time_sec": 1.89551, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "1020", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:07 GMT", + "Wed, 21 Aug 2024 23:46:21 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6620,53 +23364,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/c2636e26-e3fb-4c5b-abc8-2d2573c4300b/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", "body": "", "status": 200, "response": { - "proof_id": "c2636e26-e3fb-4c5b-abc8-2d2573c4300b", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:05.241Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "994", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:07 GMT", + "Wed, 21 Aug 2024 23:46:23 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6679,53 +23396,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/ce4b212b-90da-40b5-8574-6b328b742afb/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", "body": "", "status": 200, "response": { - "proof_id": "ce4b212b-90da-40b5-8574-6b328b742afb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:05.399Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "994", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:07 GMT", + "Wed, 21 Aug 2024 23:46:25 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6738,57 +23428,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/61392931-3d99-430e-89f7-b9d84b73e637/detail?include_verification_key=false", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/status", "body": "", "status": 200, "response": { - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.749Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-browser-file-array-for-get-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.108182S", - "queue_time_sec": 1.108182, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", + "status": "Ready" }, "rawHeaders": [ "Content-Length", - "985", + "73", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:07 GMT", + "Wed, 21 Aug 2024 23:46:27 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6801,57 +23460,70 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/f67aad3a-8525-4f8a-9752-4c7a18f51ef8/detail?include_verification_key=false", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "f67aad3a-8525-4f8a-9752-4c7a18f51ef8", + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.911Z", + "date_created": "2024-08-21T23:45:37.727Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Ready", "tags": [ - "from-browser-file-array" + "from-browser-file-array-for-get-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M00.848532S", - "queue_time_sec": 0.848532, + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M12.523669S", + "compute_time_sec": 12.523669, + "compute_times": { + "total": 12.54011, + "clean_up": 0.01644, + "create_cpp": 0.19502, + "file_setup": 0.63576, + "compile_cpp": 5.58547, + "create_r1cs": 0.01382, + "save_results": 0.72384, + "get_r1cs_info": 0.00036, + "groth16_setup": 1.53493, + "export_verification_key": 1.50403, + "download_trusted_setup_file": 0.83471, + "solidity_contract_generation": 1.49573 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M36.208210S", + "queue_time_sec": 36.20821, "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, + "has_smart_contract_verifier": true, + "has_verification_key": true, "verification_key": null, "warnings": null, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "958", + "1295", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:08 GMT", + "Wed, 21 Aug 2024 23:46:28 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6864,53 +23536,163 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/c2636e26-e3fb-4c5b-abc8-2d2573c4300b/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/ea7cb18c-7a81-4308-a726-fcf6aaeb0477/detail?include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "c2636e26-e3fb-4c5b-abc8-2d2573c4300b", + "circuit_id": "ea7cb18c-7a81-4308-a726-fcf6aaeb0477", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:05.241Z", + "date_created": "2024-08-21T23:45:37.727Z", "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M12.523669S", + "compute_time_sec": 12.523669, + "compute_times": { + "total": 12.54011, + "clean_up": 0.01644, + "create_cpp": 0.19502, + "file_setup": 0.63576, + "compile_cpp": 5.58547, + "create_r1cs": 0.01382, + "save_results": 0.72384, + "get_r1cs_info": 0.00036, + "groth16_setup": 1.53493, + "export_verification_key": 1.50403, + "download_trusted_setup_file": 0.83471, + "solidity_contract_generation": 1.49573 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M36.208210S", + "queue_time_sec": 36.20821, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, "has_verification_key": true, - "verification_key": null, + "verification_key": { + "protocol": "groth16", + "curve": "bn128", + "nPublic": 1, + "vk_alpha_1": [ + "20491192805390485299153009773594534940189261866228447918068658471970481763042", + "9383485363053290200918347156157836566562967994039712273449902621266178545958", + "1" + ], + "vk_beta_2": [ + [ + "6375614351688725206403948262868962793625744043794305715222011528459656738731", + "4252822878758300859123897981450591353533073413197771768651442665752259397132" + ], + [ + "10505242626370262277552901082094356697409835680220590971873171140371331206856", + "21847035105528745403288232691147584728191162732299865338377159692350059136679" + ], + [ + "1", + "0" + ] + ], + "vk_gamma_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_delta_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_alphabeta_12": [ + [ + [ + "2029413683389138792403550203267699914886160938906632433982220835551125967885", + "21072700047562757817161031222997517981543347628379360635925549008442030252106" + ], + [ + "5940354580057074848093997050200682056184807770593307860589430076672439820312", + "12156638873931618554171829126792193045421052652279363021382169897324752428276" + ], + [ + "7898200236362823042373859371574133993780991612861777490112507062703164551277", + "7074218545237549455313236346927434013100842096812539264420499035217050630853" + ] + ], + [ + [ + "7077479683546002997211712695946002074877511277312570035766170199895071832130", + "10093483419865920389913245021038182291233451549023025229112148274109565435465" + ], + [ + "4595479056700221319381530156280926371456704509942304414423590385166031118820", + "19831328484489333784475432780421641293929726139240675179672856274388269393268" + ], + [ + "11934129596455521040620786944827826205713621633706285934057045369193958244500", + "8037395052364110730298837004334506829870972346962140206007064471173334027475" + ] + ] + ], + "IC": [ + [ + "6819801395408938350212900248749732364821477541620635511814266536599629892365", + "9092252330033992554755034971584864587974280972948086568597554018278609861372", + "1" + ], + [ + "17882351432929302592725330552407222299541667716607588771282887857165175611387", + "18907419617206324833977586007131055763810739835484972981819026406579664278293", + "1" + ] + ] + }, "warnings": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "994", + "3935", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:08 GMT", + "Wed, 21 Aug 2024 23:46:32 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6923,53 +23705,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/55ceec4b-8c11-4629-92e5-06d579935fab/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/status", "body": "", "status": 200, "response": { - "proof_id": "55ceec4b-8c11-4629-92e5-06d579935fab", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:02.639Z", - "meta": {}, - "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M01.895510S", - "queue_time_sec": 1.89551, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "status": "Ready" }, "rawHeaders": [ "Content-Length", - "1020", + "73", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:08 GMT", + "Wed, 21 Aug 2024 23:46:48 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6982,53 +23737,70 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/ce4b212b-90da-40b5-8574-6b328b742afb/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "ce4b212b-90da-40b5-8574-6b328b742afb", + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:05.399Z", + "date_created": "2024-08-21T23:45:35.862Z", "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.027841S", + "compute_time_sec": 8.027841, + "compute_times": { + "total": 8.04202, + "clean_up": 0.01417, + "create_cpp": 0.16384, + "file_setup": 0.53541, + "compile_cpp": 3.36104, + "create_r1cs": 0.00974, + "save_results": 0.65462, + "get_r1cs_info": 0.00023, + "groth16_setup": 0.82204, + "export_verification_key": 0.81929, + "download_trusted_setup_file": 0.8381, + "solidity_contract_generation": 0.82353 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M37.686685S", + "queue_time_sec": 37.686685, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, "has_verification_key": true, "verification_key": null, "warnings": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "994", + "1304", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:08 GMT", + "Wed, 21 Aug 2024 23:46:49 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7041,70 +23813,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/61392931-3d99-430e-89f7-b9d84b73e637/detail?include_verification_key=false", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/status", "body": "", "status": 200, "response": { - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.749Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Ready", - "tags": [ - "from-browser-file-array-for-get-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M17.692277S", - "compute_time_sec": 17.692277, - "compute_times": { - "total": 17.70366, - "clean_up": 0.01138, - "create_cpp": 0.46576, - "file_setup": 0.91474, - "compile_cpp": 7.33751, - "create_r1cs": 0.02524, - "save_results": 2.05883, - "get_r1cs_info": 0.00072, - "groth16_setup": 2.00724, - "export_verification_key": 2.43014, - "download_trusted_setup_file": 0.00272, - "solidity_contract_generation": 2.44938 - }, - "file_size": 236740, - "queue_time": "P0DT00H00M01.108182S", - "queue_time_sec": 1.108182, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": true, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", + "status": "Ready" }, "rawHeaders": [ "Content-Length", - "1315", + "73", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:09 GMT", + "Wed, 21 Aug 2024 23:46:50 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7117,45 +23845,45 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/f67aad3a-8525-4f8a-9752-4c7a18f51ef8/detail?include_verification_key=false", + "path": "/api/v1/circuit/35d6e32d-7b6c-423d-ac67-39d2acd78e86/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "f67aad3a-8525-4f8a-9752-4c7a18f51ef8", + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:49.911Z", + "date_created": "2024-08-21T23:45:35.868Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-browser-file-array" + "browser-create-proof-multiplier2-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M18.236788S", - "compute_time_sec": 18.236788, + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.883447S", + "compute_time_sec": 11.883447, "compute_times": { - "total": 18.24888, - "clean_up": 0.01209, - "create_cpp": 0.47857, - "file_setup": 0.89211, - "compile_cpp": 7.74039, - "create_r1cs": 0.02552, - "save_results": 1.72869, - "get_r1cs_info": 0.00074, - "groth16_setup": 2.39599, - "export_verification_key": 2.46033, - "download_trusted_setup_file": 0.00295, - "solidity_contract_generation": 2.5115 + "total": 11.91463, + "clean_up": 0.03119, + "create_cpp": 0.18849, + "file_setup": 0.55538, + "compile_cpp": 5.24762, + "create_r1cs": 0.01131, + "save_results": 0.74058, + "get_r1cs_info": 0.00034, + "groth16_setup": 1.43659, + "export_verification_key": 1.44346, + "download_trusted_setup_file": 0.83898, + "solidity_contract_generation": 1.42069 }, "file_size": 236740, - "queue_time": "P0DT00H00M00.848532S", - "queue_time_sec": 0.848532, + "queue_time": "P0DT00H00M28.225891S", + "queue_time_sec": 28.225891, "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -7170,17 +23898,17 @@ }, "rawHeaders": [ "Content-Length", - "1287", + "1297", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:09 GMT", + "Wed, 21 Aug 2024 23:46:52 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7193,25 +23921,25 @@ { "scope": "https://sindri.app:443", "method": "POST", - "path": "/api/v1/circuit/61392931-3d99-430e-89f7-b9d84b73e637/prove", - "body": "------WebKitFormBoundaryZFmBCsS43AAYgz2h\r\nContent-Disposition: form-data; name=\"meta\"\r\n\r\n{}\r\n------WebKitFormBoundaryZFmBCsS43AAYgz2h\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundaryZFmBCsS43AAYgz2h\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundaryZFmBCsS43AAYgz2h--\r\n", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/prove", + "body": "------WebKitFormBoundary9AV1rREYOBkKeKp6\r\nContent-Disposition: form-data; name=\"meta\"\r\n\r\n{}\r\n------WebKitFormBoundary9AV1rREYOBkKeKp6\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundary9AV1rREYOBkKeKp6\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary9AV1rREYOBkKeKp6--\r\n", "status": 201, "response": { - "proof_id": "6969ca8f-e84b-41e3-81b2-27b38553c8ec", + "proof_id": "150981a1-5411-4339-ac90-d724a8fde3bd", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:09.530Z", + "date_created": "2024-08-21T23:46:50.508Z", "meta": {}, "perform_verify": false, "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, @@ -7229,76 +23957,17 @@ }, "rawHeaders": [ "Content-Length", - "994", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:04:09 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/c2636e26-e3fb-4c5b-abc8-2d2573c4300b/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", - "body": "", - "status": 200, - "response": { - "proof_id": "c2636e26-e3fb-4c5b-abc8-2d2573c4300b", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:05.241Z", - "meta": {}, - "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M04.533495S", - "queue_time_sec": 4.533495, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null - }, - "rawHeaders": [ - "Content-Length", - "1021", + "976", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:09 GMT", + "Wed, 21 Aug 2024 23:46:52 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7311,53 +23980,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/55ceec4b-8c11-4629-92e5-06d579935fab/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/proof/150981a1-5411-4339-ac90-d724a8fde3bd/status", "body": "", "status": 200, "response": { - "proof_id": "55ceec4b-8c11-4629-92e5-06d579935fab", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:02.639Z", - "meta": {}, - "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M01.895510S", - "queue_time_sec": 1.89551, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "proof_id": "150981a1-5411-4339-ac90-d724a8fde3bd", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "1020", + "77", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:09 GMT", + "Wed, 21 Aug 2024 23:46:53 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7369,26 +24011,26 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/ce4b212b-90da-40b5-8574-6b328b742afb/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/circom-multiplier2:browser-create-proof-multiplier2-circuit/prove", + "body": "------WebKitFormBoundaryBDcVwZaKI5AftBoy\r\nContent-Disposition: form-data; name=\"meta\"\r\n\r\n{}\r\n------WebKitFormBoundaryBDcVwZaKI5AftBoy\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundaryBDcVwZaKI5AftBoy\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundaryBDcVwZaKI5AftBoy--\r\n", + "status": 201, "response": { - "proof_id": "ce4b212b-90da-40b5-8574-6b328b742afb", + "proof_id": "7561197f-b9ab-41a3-9c7d-43ec42bf78d0", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:05.399Z", + "date_created": "2024-08-21T23:46:52.741Z", "meta": {}, "perform_verify": false, "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, @@ -7406,17 +24048,17 @@ }, "rawHeaders": [ "Content-Length", - "994", + "976", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:09 GMT", + "Wed, 21 Aug 2024 23:46:53 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7429,53 +24071,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6969ca8f-e84b-41e3-81b2-27b38553c8ec/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/status", "body": "", "status": 200, "response": { - "proof_id": "6969ca8f-e84b-41e3-81b2-27b38553c8ec", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:09.530Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", + "status": "Ready" }, "rawHeaders": [ "Content-Length", - "994", + "73", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:10 GMT", + "Wed, 21 Aug 2024 23:46:54 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7488,53 +24103,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/c2636e26-e3fb-4c5b-abc8-2d2573c4300b/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/proof/150981a1-5411-4339-ac90-d724a8fde3bd/status", "body": "", "status": 200, "response": { - "proof_id": "c2636e26-e3fb-4c5b-abc8-2d2573c4300b", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:05.241Z", - "meta": {}, - "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M04.533495S", - "queue_time_sec": 4.533495, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "proof_id": "150981a1-5411-4339-ac90-d724a8fde3bd", + "status": "Ready" }, "rawHeaders": [ "Content-Length", - "1021", + "71", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:11 GMT", + "Wed, 21 Aug 2024 23:46:54 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7547,53 +24135,70 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/ce4b212b-90da-40b5-8574-6b328b742afb/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "ce4b212b-90da-40b5-8574-6b328b742afb", + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:05.399Z", + "date_created": "2024-08-21T23:45:36.293Z", "meta": {}, - "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M05.619852S", - "queue_time_sec": 5.619852, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.051732S", + "compute_time_sec": 7.051732, + "compute_times": { + "total": 7.08406, + "clean_up": 0.03233, + "create_cpp": 0.16715, + "file_setup": 0.47931, + "compile_cpp": 3.27724, + "create_r1cs": 0.00856, + "save_results": 0.67063, + "get_r1cs_info": 0.00029, + "groth16_setup": 0.83473, + "export_verification_key": 0.81401, + "download_trusted_setup_file": 0.00083, + "solidity_contract_generation": 0.79898 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M33.595266S", + "queue_time_sec": 33.595266, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, "has_verification_key": true, "verification_key": null, "warnings": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "1021", + "1292", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:11 GMT", + "Wed, 21 Aug 2024 23:46:54 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7606,51 +24211,51 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/55ceec4b-8c11-4629-92e5-06d579935fab/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/proof/150981a1-5411-4339-ac90-d724a8fde3bd/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "55ceec4b-8c11-4629-92e5-06d579935fab", + "proof_id": "150981a1-5411-4339-ac90-d724a8fde3bd", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:02.639Z", + "date_created": "2024-08-21T23:46:50.508Z", "meta": {}, "perform_verify": false, "status": "Ready", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M06.475799S", - "compute_time_sec": 6.475799, + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.736845S", + "compute_time_sec": 1.736845, "compute_times": { - "prove": 4.9055, - "total": 6.48084, - "clean_up": 0.00504, - "file_setup": 0.29495, - "save_results": 0.99788, - "export_calldata": 0.2681, - "generate_witness_c": 0.00937 + "prove": 0.34321, + "total": 1.74851, + "clean_up": 0.01166, + "file_setup": 0.61211, + "save_results": 0.64025, + "export_calldata": 0.12945, + "generate_witness_c": 0.01183 }, - "file_size": 1349, + "file_size": 1350, "proof": { "pi_a": [ - "478529904862538470384620849735560093368297199283594490873224028181055084136", - "17398923846336374355130367560875528818408708976757533040179915122365171667434", + "9478479683470099932539142541906664129366372474992034768473793554365207052609", + "19687072707156529391257534753173393472065442382122770961206719574057699089449", "1" ], "pi_b": [ [ - "9052253184996528150363013588277704679727755739180457314696976816116975308935", - "10603023705135742627225292153828181854397743329710965761919774500820368325221" + "1847966311852597251278256440569309624289947006381486258440069992607505621083", + "4959699478326577031708960534888910498356327208448732812474904408225772478277" ], [ - "6265550541183569062456585878722580953604416991204362185153509581935231900049", - "12445582079325091307383933206180000555958021772090403725839138092644126309168" + "20822384439644638875825377116249134191926382108216821519491563000833963042179", + "12827270299923673065325232281518484428659445071202007122248519547877208771326" ], [ "1", @@ -7658,8 +24263,8 @@ ] ], "pi_c": [ - "6020754598294910425338531241836058311494569818737589123436671903558166366520", - "17692390309303469875404885551882822810994886007381755271594102328856914256607", + "17329496061299947693163566705412482095478014204258218985813561164013294534886", + "3913152786498836611550754736096962442107708215272704253373846607920229034646", "1" ], "protocol": "groth16" @@ -7667,8 +24272,8 @@ "public": [ "20" ], - "queue_time": "P0DT00H00M01.895510S", - "queue_time_sec": 1.89551, + "queue_time": "P0DT00H00M01.509874S", + "queue_time_sec": 1.509874, "smart_contract_calldata": null, "has_smart_contract_calldata": true, "has_verification_key": true, @@ -7771,17 +24376,17 @@ }, "rawHeaders": [ "Content-Length", - "4553", + "4539", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:11 GMT", + "Wed, 21 Aug 2024 23:46:55 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7794,25 +24399,57 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6969ca8f-e84b-41e3-81b2-27b38553c8ec/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/proof/7561197f-b9ab-41a3-9c7d-43ec42bf78d0/status", "body": "", "status": 200, "response": { - "proof_id": "6969ca8f-e84b-41e3-81b2-27b38553c8ec", + "proof_id": "7561197f-b9ab-41a3-9c7d-43ec42bf78d0", + "status": "In Progress" + }, + "rawHeaders": [ + "Content-Length", + "77", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:46:55 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/b67280b5-2db0-4f7b-acd2-533082c9ca62/prove", + "body": "------WebKitFormBoundary3MPzukcmAKt4ZsMz\r\nContent-Disposition: form-data; name=\"meta\"\r\n\r\n{}\r\n------WebKitFormBoundary3MPzukcmAKt4ZsMz\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundary3MPzukcmAKt4ZsMz\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary3MPzukcmAKt4ZsMz--\r\n", + "status": 201, + "response": { + "proof_id": "3b269674-11cc-4571-a0ad-55a5bfed0893", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:09.530Z", + "date_created": "2024-08-21T23:46:55.383Z", "meta": {}, "perform_verify": false, "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, @@ -7830,17 +24467,285 @@ }, "rawHeaders": [ "Content-Length", - "994", + "976", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:11 GMT", + "Wed, 21 Aug 2024 23:46:56 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/detail?include_verification_key=false", + "body": "", + "status": 200, + "response": { + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-21T23:45:35.867Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.348528S", + "compute_time_sec": 7.348528, + "compute_times": { + "total": 7.37434, + "clean_up": 0.02581, + "create_cpp": 0.11428, + "file_setup": 0.44876, + "compile_cpp": 3.18739, + "create_r1cs": 0.0067, + "save_results": 0.68002, + "get_r1cs_info": 0.00023, + "groth16_setup": 0.96852, + "export_verification_key": 0.95338, + "download_trusted_setup_file": 0.00086, + "solidity_contract_generation": 0.98838 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M34.713006S", + "queue_time_sec": 34.713006, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + "rawHeaders": [ + "Content-Length", + "1295", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:46:56 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/3b269674-11cc-4571-a0ad-55a5bfed0893/status", + "body": "", + "status": 200, + "response": { + "proof_id": "3b269674-11cc-4571-a0ad-55a5bfed0893", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "72", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:46:56 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/d1caad96-a430-4452-8843-5212f4494ffe/proofs", + "body": "", + "status": 200, + "response": [ + { + "proof_id": "150981a1-5411-4339-ac90-d724a8fde3bd", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_id": "d1caad96-a430-4452-8843-5212f4494ffe", + "circuit_type": "circom", + "date_created": "2024-08-21T23:46:50.508Z", + "meta": {}, + "perform_verify": false, + "status": "Ready", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.736845S", + "compute_time_sec": 1.736845, + "compute_times": { + "prove": 0.34321, + "total": 1.74851, + "clean_up": 0.01166, + "file_setup": 0.61211, + "save_results": 0.64025, + "export_calldata": 0.12945, + "generate_witness_c": 0.01183 + }, + "file_size": 1350, + "proof": null, + "public": null, + "queue_time": "P0DT00H00M01.509874S", + "queue_time_sec": 1.509874, + "smart_contract_calldata": null, + "has_smart_contract_calldata": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null + } + ], + "rawHeaders": [ + "Content-Length", + "1180", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:46:56 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/7561197f-b9ab-41a3-9c7d-43ec42bf78d0/status", + "body": "", + "status": 200, + "response": { + "proof_id": "7561197f-b9ab-41a3-9c7d-43ec42bf78d0", + "status": "Ready" + }, + "rawHeaders": [ + "Content-Length", + "71", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:46:57 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/9a7491d9-3ccc-4ffa-938d-83da56a222e0/prove", + "body": "------WebKitFormBoundaryUWSegBYAyQOSmQyo\r\nContent-Disposition: form-data; name=\"meta\"\r\n\r\n{}\r\n------WebKitFormBoundaryUWSegBYAyQOSmQyo\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundaryUWSegBYAyQOSmQyo\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundaryUWSegBYAyQOSmQyo--\r\n", + "status": 201, + "response": { + "proof_id": "d5708a60-54a8-47a2-8ac6-65a3339c1eb3", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", + "circuit_type": "circom", + "date_created": "2024-08-21T23:46:57.275Z", + "meta": {}, + "perform_verify": false, + "status": "Queued", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": null, + "proof": null, + "public": null, + "queue_time": null, + "queue_time_sec": null, + "smart_contract_calldata": null, + "has_smart_contract_calldata": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null + }, + "rawHeaders": [ + "Content-Length", + "976", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:46:57 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7853,51 +24758,51 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/55ceec4b-8c11-4629-92e5-06d579935fab/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/proof/7561197f-b9ab-41a3-9c7d-43ec42bf78d0/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "55ceec4b-8c11-4629-92e5-06d579935fab", + "proof_id": "7561197f-b9ab-41a3-9c7d-43ec42bf78d0", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "d2cd4f1c-6161-48c4-afd0-b1367d985ec9", + "circuit_id": "35d6e32d-7b6c-423d-ac67-39d2acd78e86", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:02.639Z", + "date_created": "2024-08-21T23:46:52.741Z", "meta": {}, "perform_verify": false, "status": "Ready", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M06.475799S", - "compute_time_sec": 6.475799, + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.506510S", + "compute_time_sec": 1.50651, "compute_times": { - "prove": 4.9055, - "total": 6.48084, - "clean_up": 0.00504, - "file_setup": 0.29495, - "save_results": 0.99788, - "export_calldata": 0.2681, - "generate_witness_c": 0.00937 + "prove": 0.23323, + "total": 1.52233, + "clean_up": 0.01582, + "file_setup": 0.51804, + "save_results": 0.62985, + "export_calldata": 0.1146, + "generate_witness_c": 0.01078 }, - "file_size": 1349, + "file_size": 1352, "proof": { "pi_a": [ - "478529904862538470384620849735560093368297199283594490873224028181055084136", - "17398923846336374355130367560875528818408708976757533040179915122365171667434", + "9771205632966806906803747118574866416755642748305064935618625726586578223315", + "13209423638959607312332212744333599356907935417170716278735521042027591906592", "1" ], "pi_b": [ [ - "9052253184996528150363013588277704679727755739180457314696976816116975308935", - "10603023705135742627225292153828181854397743329710965761919774500820368325221" + "18381727872759784539238039821545162301541850428525592163525997921764127466513", + "7168225225207867762888569743131858930230410366416545284634171871129218001408" ], [ - "6265550541183569062456585878722580953604416991204362185153509581935231900049", - "12445582079325091307383933206180000555958021772090403725839138092644126309168" + "16847716343065101300092021148238622792896547213575393187859740684949392408938", + "20659694955240646244351256365540889207252029498177847034678501818245360509527" ], [ "1", @@ -7905,8 +24810,8 @@ ] ], "pi_c": [ - "6020754598294910425338531241836058311494569818737589123436671903558166366520", - "17692390309303469875404885551882822810994886007381755271594102328856914256607", + "20487854500659990795170365337716245321337800926260062142052305360614942310181", + "13781534370855863616630895012300408334789919259207725642156568792300476178257", "1" ], "protocol": "groth16" @@ -7914,8 +24819,8 @@ "public": [ "20" ], - "queue_time": "P0DT00H00M01.895510S", - "queue_time_sec": 1.89551, + "queue_time": "P0DT00H00M01.371386S", + "queue_time_sec": 1.371386, "smart_contract_calldata": null, "has_smart_contract_calldata": true, "has_verification_key": true, @@ -8018,17 +24923,81 @@ }, "rawHeaders": [ "Content-Length", - "4553", + "4539", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:46:58 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/d5708a60-54a8-47a2-8ac6-65a3339c1eb3/status", + "body": "", + "status": 200, + "response": { + "proof_id": "d5708a60-54a8-47a2-8ac6-65a3339c1eb3", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "72", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:11 GMT", + "Wed, 21 Aug 2024 23:46:58 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/3b269674-11cc-4571-a0ad-55a5bfed0893/status", + "body": "", + "status": 200, + "response": { + "proof_id": "3b269674-11cc-4571-a0ad-55a5bfed0893", + "status": "Ready" + }, + "rawHeaders": [ + "Content-Length", + "71", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:46:58 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -8041,51 +25010,51 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/c2636e26-e3fb-4c5b-abc8-2d2573c4300b/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/proof/3b269674-11cc-4571-a0ad-55a5bfed0893/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "c2636e26-e3fb-4c5b-abc8-2d2573c4300b", + "proof_id": "3b269674-11cc-4571-a0ad-55a5bfed0893", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "8997eaad-0867-4463-b5f9-ed0e9db08c92", + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:05.241Z", + "date_created": "2024-08-21T23:46:55.383Z", "meta": {}, "perform_verify": false, "status": "Ready", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M02.716636S", - "compute_time_sec": 2.716636, + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.467681S", + "compute_time_sec": 1.467681, "compute_times": { - "prove": 0.40283, - "total": 2.73256, - "clean_up": 0.01593, - "file_setup": 0.61858, - "save_results": 1.54749, - "export_calldata": 0.13363, - "generate_witness_c": 0.01411 + "prove": 0.30873, + "total": 1.48311, + "clean_up": 0.01543, + "file_setup": 0.42702, + "save_results": 0.59305, + "export_calldata": 0.12762, + "generate_witness_c": 0.01126 }, - "file_size": 1349, + "file_size": 1351, "proof": { "pi_a": [ - "13240527368905696582900487280390062898470566898155458334511402665735722677464", - "6542197359340666882269671694955329215372117826404989241083629390912492981797", + "4214980379667544183269769998282098430787417741218635141078649267474486764496", + "19444914357261603924983442683463882144685587393495125012812717365832603816036", "1" ], "pi_b": [ [ - "9853632052849184332014120270156194303556939142376041592133777949265701540786", - "19925026858997591358803275931892764009329886826959459890956171507321949281393" + "12472366240186510376934597796667340547919646563164345064174100710166049067312", + "1384692542239620650686375389411586226242787695304232996507746988780084515317" ], [ - "18424602669879870813748196745540271705593993010854735777516637771124811260548", - "1374984017374820351209172927922040953635597295057525815737389195399859175188" + "18545272013242224889626148937228392558230751349969159462943250379716730444883", + "16930075408427172366151176872271884999728157570008326421827861027088063083280" ], [ "1", @@ -8093,8 +25062,8 @@ ] ], "pi_c": [ - "19507463335285011452471332558528705114517978124855493748477187404931524636707", - "396764709156773217865384335038930230695079477452564020395871990269569579924", + "2216335333702280100593576332076856531588119923422018952333627737126272793828", + "16194689790098251815568259353786561597288020921629872533499635389932343888560", "1" ], "protocol": "groth16" @@ -8102,8 +25071,8 @@ "public": [ "20" ], - "queue_time": "P0DT00H00M04.533495S", - "queue_time_sec": 4.533495, + "queue_time": "P0DT00H00M01.388095S", + "queue_time_sec": 1.388095, "smart_contract_calldata": null, "has_smart_contract_calldata": true, "has_verification_key": true, @@ -8206,17 +25175,17 @@ }, "rawHeaders": [ "Content-Length", - "4556", + "4540", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:12 GMT", + "Wed, 21 Aug 2024 23:46:59 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -8229,53 +25198,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/ce4b212b-90da-40b5-8574-6b328b742afb/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/proof/d5708a60-54a8-47a2-8ac6-65a3339c1eb3/status", "body": "", "status": 200, "response": { - "proof_id": "ce4b212b-90da-40b5-8574-6b328b742afb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:05.399Z", - "meta": {}, - "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M05.619852S", - "queue_time_sec": 5.619852, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "proof_id": "d5708a60-54a8-47a2-8ac6-65a3339c1eb3", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "1021", + "77", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:12 GMT", + "Wed, 21 Aug 2024 23:47:00 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -8288,53 +25230,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6969ca8f-e84b-41e3-81b2-27b38553c8ec/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/proof/d5708a60-54a8-47a2-8ac6-65a3339c1eb3/status", "body": "", "status": 200, "response": { - "proof_id": "6969ca8f-e84b-41e3-81b2-27b38553c8ec", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:09.530Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "proof_id": "d5708a60-54a8-47a2-8ac6-65a3339c1eb3", + "status": "Ready" }, "rawHeaders": [ "Content-Length", - "994", + "71", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:12 GMT", + "Wed, 21 Aug 2024 23:47:01 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -8347,51 +25262,51 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/ce4b212b-90da-40b5-8574-6b328b742afb/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/proof/d5708a60-54a8-47a2-8ac6-65a3339c1eb3/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "ce4b212b-90da-40b5-8574-6b328b742afb", + "proof_id": "d5708a60-54a8-47a2-8ac6-65a3339c1eb3", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "6cf25fb9-0cb4-40cb-91e9-e6d47bdda6be", + "circuit_id": "9a7491d9-3ccc-4ffa-938d-83da56a222e0", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:05.399Z", + "date_created": "2024-08-21T23:46:57.275Z", "meta": {}, "perform_verify": false, "status": "Ready", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M02.587792S", - "compute_time_sec": 2.587792, + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.498508S", + "compute_time_sec": 1.498508, "compute_times": { - "prove": 0.48659, - "total": 2.59683, - "clean_up": 0.00904, - "file_setup": 0.65684, - "save_results": 1.30711, - "export_calldata": 0.12402, - "generate_witness_c": 0.01323 + "prove": 0.28709, + "total": 1.50793, + "clean_up": 0.00942, + "file_setup": 0.50835, + "save_results": 0.54631, + "export_calldata": 0.1346, + "generate_witness_c": 0.02215 }, - "file_size": 1350, + "file_size": 1349, "proof": { "pi_a": [ - "13847871521317380648531210516442979733811812633831838697637212285280251098372", - "6588111891081474147675582517157289850839442134503211660695170070676957318440", + "3675615969698059068989779681824386645752051334974105857855807074315453776037", + "15646220732574527365497401988796727463879796017735927359700368737041203191251", "1" ], "pi_b": [ [ - "10787692138389091281874726200570776611049055923012398417318832102492753557402", - "3609923354297180334140171474852559640284647877127890464015954032363286192197" + "20647180933383830462538920448041512972756237901808068388233470992741613977106", + "300923873165597256989720561553879817406237570882425836979685162276510012633" ], [ - "19338123515517628309377995783307794486192731946970876171986890383706212836807", - "8824607816634621488495080094377534039837271565061678428968175752690614622782" + "7568337243970132071823139075709602277204717858697414063219096027313389284887", + "12762485998698823814629156645260937938870810724254471501095258709595304438751" ], [ "1", @@ -8399,8 +25314,8 @@ ] ], "pi_c": [ - "4444678490974354246996942852833919459794926629767026790393522253465559860719", - "10579295840022782590198260999346838696797951665959497476724761254734222328689", + "11936985861976366283818180763643381220299669209928844883186392553162989820900", + "9252757857896476753045910433164976771131529024958483990517905886154217646024", "1" ], "protocol": "groth16" @@ -8408,8 +25323,8 @@ "public": [ "20" ], - "queue_time": "P0DT00H00M05.619852S", - "queue_time_sec": 5.619852, + "queue_time": "P0DT00H00M01.344984S", + "queue_time_sec": 1.344984, "smart_contract_calldata": null, "has_smart_contract_calldata": true, "has_verification_key": true, @@ -8512,194 +25427,17 @@ }, "rawHeaders": [ "Content-Length", - "4557", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:04:14 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/6969ca8f-e84b-41e3-81b2-27b38553c8ec/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", - "body": "", - "status": 200, - "response": { - "proof_id": "6969ca8f-e84b-41e3-81b2-27b38553c8ec", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:09.530Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null - }, - "rawHeaders": [ - "Content-Length", - "994", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:04:14 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/6969ca8f-e84b-41e3-81b2-27b38553c8ec/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", - "body": "", - "status": 200, - "response": { - "proof_id": "6969ca8f-e84b-41e3-81b2-27b38553c8ec", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:09.530Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null - }, - "rawHeaders": [ - "Content-Length", - "994", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:04:15 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/6969ca8f-e84b-41e3-81b2-27b38553c8ec/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", - "body": "", - "status": 200, - "response": { - "proof_id": "6969ca8f-e84b-41e3-81b2-27b38553c8ec", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:09.530Z", - "meta": {}, - "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M06.660549S", - "queue_time_sec": 6.660549, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null - }, - "rawHeaders": [ - "Content-Length", - "1021", + "4537", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:16 GMT", + "Wed, 21 Aug 2024 23:47:02 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -8712,51 +25450,51 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/6969ca8f-e84b-41e3-81b2-27b38553c8ec/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/proof/3b269674-11cc-4571-a0ad-55a5bfed0893/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "6969ca8f-e84b-41e3-81b2-27b38553c8ec", + "proof_id": "3b269674-11cc-4571-a0ad-55a5bfed0893", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", + "circuit_id": "b67280b5-2db0-4f7b-acd2-533082c9ca62", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:09.530Z", + "date_created": "2024-08-21T23:46:55.383Z", "meta": {}, "perform_verify": false, "status": "Ready", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M01.745108S", - "compute_time_sec": 1.745108, + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.467681S", + "compute_time_sec": 1.467681, "compute_times": { - "prove": 0.32115, - "total": 1.76222, - "clean_up": 0.01711, - "file_setup": 0.15529, - "save_results": 1.12295, - "export_calldata": 0.13817, - "generate_witness_c": 0.00755 + "prove": 0.30873, + "total": 1.48311, + "clean_up": 0.01543, + "file_setup": 0.42702, + "save_results": 0.59305, + "export_calldata": 0.12762, + "generate_witness_c": 0.01126 }, - "file_size": 1352, + "file_size": 1351, "proof": { "pi_a": [ - "10035203094199996862262185824936148718611611069345221873421993169012479168974", - "17766719630345961830603520582709020380706769897601012905220503463005856676193", + "4214980379667544183269769998282098430787417741218635141078649267474486764496", + "19444914357261603924983442683463882144685587393495125012812717365832603816036", "1" ], "pi_b": [ [ - "18947521986871741013710584074202408200101101581928922730672246052593690302863", - "17582549059458855738087971788182243615865298448783525905693947869468459194519" + "12472366240186510376934597796667340547919646563164345064174100710166049067312", + "1384692542239620650686375389411586226242787695304232996507746988780084515317" ], [ - "18965736539397618011370337182439792434115230252226239886222342660709547888608", - "11187312691745500391790057091952430070598340388207541051709125275997715485885" + "18545272013242224889626148937228392558230751349969159462943250379716730444883", + "16930075408427172366151176872271884999728157570008326421827861027088063083280" ], [ "1", @@ -8764,8 +25502,8 @@ ] ], "pi_c": [ - "5116001257711064493006761183513835884314071216645992982891690841516392497949", - "3644961700999194829385889896617463171554827828867321298737197316451076246127", + "2216335333702280100593576332076856531588119923422018952333627737126272793828", + "16194689790098251815568259353786561597288020921629872533499635389932343888560", "1" ], "protocol": "groth16" @@ -8773,8 +25511,8 @@ "public": [ "20" ], - "queue_time": "P0DT00H00M06.660549S", - "queue_time_sec": 6.660549, + "queue_time": "P0DT00H00M01.388095S", + "queue_time_sec": 1.388095, "smart_contract_calldata": null, "has_smart_contract_calldata": true, "has_verification_key": true, @@ -8877,86 +25615,17 @@ }, "rawHeaders": [ "Content-Length", - "4559", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:04:18 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/61392931-3d99-430e-89f7-b9d84b73e637/proofs", - "body": "", - "status": 200, - "response": [ - { - "proof_id": "6969ca8f-e84b-41e3-81b2-27b38553c8ec", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "61392931-3d99-430e-89f7-b9d84b73e637", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:09.530Z", - "meta": {}, - "perform_verify": false, - "status": "Ready", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M01.745108S", - "compute_time_sec": 1.745108, - "compute_times": { - "prove": 0.32115, - "total": 1.76222, - "clean_up": 0.01711, - "file_setup": 0.15529, - "save_results": 1.12295, - "export_calldata": 0.13817, - "generate_witness_c": 0.00755 - }, - "file_size": 1352, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M06.660549S", - "queue_time_sec": 6.660549, - "smart_contract_calldata": null, - "has_smart_contract_calldata": true, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null - } - ], - "rawHeaders": [ - "Content-Length", - "1198", + "4540", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:18 GMT", + "Wed, 21 Aug 2024 23:47:08 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", diff --git a/test/fixtures/sdk.test.ts.json b/test/fixtures/sdk.test.ts.json index d435513..5247ecc 100644 --- a/test/fixtures/sdk.test.ts.json +++ b/test/fixtures/sdk.test.ts.json @@ -1,4 +1,69 @@ [ + { + "scope": "https://sindri.app:443", + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, + "response": { + "circuit_id": "e698a24e-351f-448a-8116-1a50bca6cb67", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-21T23:45:34.429Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Queued", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": 529, + "queue_time": null, + "queue_time_sec": null, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + "rawHeaders": [ + "Content-Length", + "908", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:35 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, { "scope": "https://sindri.app:443", "method": "GET", @@ -7,42 +72,42 @@ "status": 200, "response": [ { - "circuit_id": "9f87946e-feb4-4127-8243-d878ce00695c", + "circuit_id": "36050a59-db0a-4fe3-ad35-911ec40dcb5d", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:53.315Z", + "date_created": "2024-08-21T23:35:17.847Z", "meta": {}, - "num_proofs": 1, + "num_proofs": 0, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-tarball-for-get-proof" + "from-browser-file-array" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H02M01.856241S", - "compute_time_sec": 121.856241, - "compute_times": { - "total": 121.86847, - "clean_up": 0.01223, - "create_cpp": 0.47208, - "file_setup": 102.78775, - "compile_cpp": 7.67076, - "create_r1cs": 0.02696, - "save_results": 1.74644, - "get_r1cs_info": 0.0007, - "groth16_setup": 2.67824, - "export_verification_key": 2.52956, - "download_trusted_setup_file": 1.41641, - "solidity_contract_generation": 2.52734 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.380557S", + "compute_time_sec": 7.380557, + "compute_times": { + "total": 7.43604, + "clean_up": 0.05549, + "create_cpp": 0.10428, + "file_setup": 0.49115, + "compile_cpp": 3.15138, + "create_r1cs": 0.00713, + "save_results": 0.68226, + "get_r1cs_info": 0.00026, + "groth16_setup": 1.01287, + "export_verification_key": 0.97057, + "download_trusted_setup_file": 0.0008, + "solidity_contract_generation": 0.95986 }, - "file_size": 236732, - "queue_time": "P0DT00H00M44.084809S", - "queue_time_sec": 44.084809, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 236740, + "queue_time": "P0DT00H00M35.783578S", + "queue_time_sec": 35.783578, + "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, "verification_key": null, @@ -55,41 +120,41 @@ "num_public_inputs": 0 }, { - "circuit_id": "497d92a3-7a5f-49a7-91b4-feaa507dc08b", + "circuit_id": "610928ec-9478-44d7-a238-f269570326bb", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:53.295Z", + "date_created": "2024-08-21T23:35:17.764Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-browser-file-array-for-prove-circuit" + "from-browser-file-array-for-get-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H02M08.602885S", - "compute_time_sec": 128.602885, - "compute_times": { - "total": 128.61682, - "clean_up": 0.01394, - "create_cpp": 0.53445, - "file_setup": 108.99449, - "compile_cpp": 8.54259, - "create_r1cs": 0.02794, - "save_results": 1.69189, - "get_r1cs_info": 0.00053, - "groth16_setup": 2.354, - "export_verification_key": 2.53503, - "download_trusted_setup_file": 1.40071, - "solidity_contract_generation": 2.52124 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.376999S", + "compute_time_sec": 8.376999, + "compute_times": { + "total": 8.42465, + "clean_up": 0.04765, + "create_cpp": 0.10357, + "file_setup": 0.49752, + "compile_cpp": 3.15577, + "create_r1cs": 0.00737, + "save_results": 0.69868, + "get_r1cs_info": 0.0002, + "groth16_setup": 0.96151, + "export_verification_key": 1.00177, + "download_trusted_setup_file": 0.99059, + "solidity_contract_generation": 0.96001 }, "file_size": 236740, - "queue_time": "P0DT00H00M49.602689S", - "queue_time_sec": 49.602689, + "queue_time": "P0DT00H00M38.041232S", + "queue_time_sec": 38.041232, "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -103,42 +168,42 @@ "num_public_inputs": 0 }, { - "circuit_id": "9cb8cbb6-6717-42e5-bfa6-efdb6923f62a", + "circuit_id": "aab5b1a6-c9df-4aa5-850a-8dd54d4fc630", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:53.139Z", + "date_created": "2024-08-21T23:35:17.747Z", "meta": {}, "num_proofs": 1, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-tarball-for-prove-circuit" + "from-browser-file-array-for-get-proof" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H01M09.108498S", - "compute_time_sec": 69.108498, - "compute_times": { - "total": 69.12153, - "clean_up": 0.01303, - "create_cpp": 0.21627, - "file_setup": 55.59628, - "compile_cpp": 5.4122, - "create_r1cs": 0.01352, - "save_results": 1.74063, - "get_r1cs_info": 0.00051, - "groth16_setup": 1.49919, - "export_verification_key": 1.52744, - "download_trusted_setup_file": 1.60387, - "solidity_contract_generation": 1.49858 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.109107S", + "compute_time_sec": 7.109107, + "compute_times": { + "total": 7.15023, + "clean_up": 0.04112, + "create_cpp": 0.16976, + "file_setup": 0.48058, + "compile_cpp": 3.28511, + "create_r1cs": 0.00904, + "save_results": 0.71391, + "get_r1cs_info": 0.00022, + "groth16_setup": 0.80765, + "export_verification_key": 0.82646, + "download_trusted_setup_file": 0.00084, + "solidity_contract_generation": 0.81553 }, - "file_size": 236732, - "queue_time": "P0DT00H00M43.245549S", - "queue_time_sec": 43.245549, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 236740, + "queue_time": "P0DT00H00M33.051664S", + "queue_time_sec": 33.051664, + "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, "verification_key": null, @@ -151,41 +216,41 @@ "num_public_inputs": 0 }, { - "circuit_id": "c7bde157-846a-4945-a7bb-1e4154ffacf6", + "circuit_id": "8222d5b6-befb-4f71-9e7b-6469b917b7ca", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:53.105Z", + "date_created": "2024-08-21T23:35:17.726Z", "meta": {}, - "num_proofs": 0, + "num_proofs": 1, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-browser-file-array-for-get-circuit" + "browser-create-proof-multiplier2-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H01M07.683059S", - "compute_time_sec": 67.683059, - "compute_times": { - "total": 67.69383, - "clean_up": 0.01077, - "create_cpp": 0.16447, - "file_setup": 55.33005, - "compile_cpp": 5.28732, - "create_r1cs": 0.01694, - "save_results": 1.78737, - "get_r1cs_info": 0.00039, - "groth16_setup": 1.20579, - "export_verification_key": 1.18755, - "download_trusted_setup_file": 1.54519, - "solidity_contract_generation": 1.158 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.343132S", + "compute_time_sec": 7.343132, + "compute_times": { + "total": 7.38117, + "clean_up": 0.03804, + "create_cpp": 0.09991, + "file_setup": 0.46715, + "compile_cpp": 3.1895, + "create_r1cs": 0.00663, + "save_results": 0.67915, + "get_r1cs_info": 0.00021, + "groth16_setup": 0.98411, + "export_verification_key": 0.92848, + "download_trusted_setup_file": 0.00076, + "solidity_contract_generation": 0.98724 }, "file_size": 236740, - "queue_time": "P0DT00H00M40.258010S", - "queue_time_sec": 40.25801, + "queue_time": "P0DT00H00M25.960484S", + "queue_time_sec": 25.960484, "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -199,41 +264,41 @@ "num_public_inputs": 0 }, { - "circuit_id": "80919e3a-b1f1-43e6-a19f-939b4ec60875", + "circuit_id": "ad50072f-d51c-4d7e-894c-b0bc9df8f13b", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:53.039Z", + "date_created": "2024-08-21T23:35:17.673Z", "meta": {}, "num_proofs": 1, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "browser-create-proof-multiplier2-circuit" + "from-browser-file-array-for-prove-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H01M16.286594S", - "compute_time_sec": 76.286594, - "compute_times": { - "total": 76.30469, - "clean_up": 0.0181, - "create_cpp": 0.20123, - "file_setup": 62.87893, - "compile_cpp": 5.43432, - "create_r1cs": 0.0143, - "save_results": 1.88281, - "get_r1cs_info": 0.00061, - "groth16_setup": 1.43763, - "export_verification_key": 1.4178, - "download_trusted_setup_file": 1.6005, - "solidity_contract_generation": 1.41846 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.742742S", + "compute_time_sec": 10.742742, + "compute_times": { + "total": 10.76712, + "clean_up": 0.02438, + "create_cpp": 0.18859, + "file_setup": 0.45031, + "compile_cpp": 5.02003, + "create_r1cs": 0.01146, + "save_results": 0.72694, + "get_r1cs_info": 0.00043, + "groth16_setup": 1.43951, + "export_verification_key": 1.46105, + "download_trusted_setup_file": 0.00149, + "solidity_contract_generation": 1.44293 }, "file_size": 236740, - "queue_time": "P0DT00H00M37.103704S", - "queue_time_sec": 37.103704, + "queue_time": "P0DT00H00M37.528721S", + "queue_time_sec": 37.528721, "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -247,41 +312,41 @@ "num_public_inputs": 0 }, { - "circuit_id": "81bf4aa0-7750-413d-84bd-f0f689c2a7bb", + "circuit_id": "412b58a9-a9da-4f67-8364-4a5759b24899", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:53.032Z", + "date_created": "2024-08-21T23:35:17.381Z", "meta": {}, "num_proofs": 1, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-browser-file-array-for-get-proof" + "from-browser-file-array-for-get-all-circuit-proofs" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H01M02.604865S", - "compute_time_sec": 62.604865, - "compute_times": { - "total": 62.63002, - "clean_up": 0.02516, - "create_cpp": 0.16035, - "file_setup": 50.13667, - "compile_cpp": 5.43182, - "create_r1cs": 0.01841, - "save_results": 1.67922, - "get_r1cs_info": 0.00046, - "groth16_setup": 1.18516, - "export_verification_key": 1.23388, - "download_trusted_setup_file": 1.54563, - "solidity_contract_generation": 1.21327 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.907843S", + "compute_time_sec": 11.907843, + "compute_times": { + "total": 11.94823, + "clean_up": 0.04039, + "create_cpp": 0.19381, + "file_setup": 0.55117, + "compile_cpp": 5.10421, + "create_r1cs": 0.01457, + "save_results": 0.77747, + "get_r1cs_info": 0.00043, + "groth16_setup": 1.42702, + "export_verification_key": 1.40211, + "download_trusted_setup_file": 1.02669, + "solidity_contract_generation": 1.41037 }, "file_size": 236740, - "queue_time": "P0DT00H00M39.506071S", - "queue_time_sec": 39.506071, + "queue_time": "P0DT00H00M25.714884S", + "queue_time_sec": 25.714884, "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -295,42 +360,42 @@ "num_public_inputs": 0 }, { - "circuit_id": "076bc14f-b178-4839-b7e2-a81de7886aa1", + "circuit_id": "41029810-d9e0-47ac-a7de-546849824809", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:53.025Z", + "date_created": "2024-08-21T23:35:16.423Z", "meta": {}, - "num_proofs": 0, + "num_proofs": 1, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-tarball-for-get-circuit" + "sdk-create-proof-multiplier2-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H02M08.101221S", - "compute_time_sec": 128.101221, - "compute_times": { - "total": 128.11541, - "clean_up": 0.01419, - "create_cpp": 0.48448, - "file_setup": 109.3077, - "compile_cpp": 8.74554, - "create_r1cs": 0.02788, - "save_results": 1.76212, - "get_r1cs_info": 0.00074, - "groth16_setup": 2.37999, - "export_verification_key": 2.00555, - "download_trusted_setup_file": 1.40442, - "solidity_contract_generation": 1.98279 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.031354S", + "compute_time_sec": 7.031354, + "compute_times": { + "total": 7.07244, + "clean_up": 0.04108, + "create_cpp": 0.14415, + "file_setup": 0.48456, + "compile_cpp": 3.24479, + "create_r1cs": 0.00909, + "save_results": 0.68806, + "get_r1cs_info": 0.00023, + "groth16_setup": 0.8156, + "export_verification_key": 0.80904, + "download_trusted_setup_file": 0.00085, + "solidity_contract_generation": 0.83498 }, - "file_size": 236732, - "queue_time": "P0DT00H00M35.696266S", - "queue_time_sec": 35.696266, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 236759, + "queue_time": "P0DT00H00M26.114697S", + "queue_time_sec": 26.114697, + "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, "verification_key": null, @@ -343,41 +408,41 @@ "num_public_inputs": 0 }, { - "circuit_id": "d63d4c8a-59a9-4762-8eb7-27872fb1529f", + "circuit_id": "e0a01eb5-9516-46fa-ad01-992a6a090a89", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:52.737Z", + "date_created": "2024-08-21T23:35:16.371Z", "meta": {}, "num_proofs": 1, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-tarball-for-all-circuit-proofs" + "from-tarball-for-prove-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H01M58.910666S", - "compute_time_sec": 118.910666, - "compute_times": { - "total": 118.93168, - "clean_up": 0.02102, - "create_cpp": 0.50121, - "file_setup": 100.19041, - "compile_cpp": 8.18066, - "create_r1cs": 0.02439, - "save_results": 1.70199, - "get_r1cs_info": 0.0007, - "groth16_setup": 2.35503, - "export_verification_key": 2.1752, - "download_trusted_setup_file": 1.38474, - "solidity_contract_generation": 2.39634 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.941748S", + "compute_time_sec": 11.941748, + "compute_times": { + "total": 11.99089, + "clean_up": 0.04915, + "create_cpp": 0.18828, + "file_setup": 0.59149, + "compile_cpp": 4.94017, + "create_r1cs": 0.01134, + "save_results": 0.82021, + "get_r1cs_info": 0.00036, + "groth16_setup": 1.40283, + "export_verification_key": 1.47751, + "download_trusted_setup_file": 1.08976, + "solidity_contract_generation": 1.41979 }, "file_size": 236732, - "queue_time": "P0DT00H00M31.415770S", - "queue_time_sec": 31.41577, + "queue_time": "P0DT00H00M25.273069S", + "queue_time_sec": 25.273069, "uploaded_file_name": "circom-multiplier2.tgz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -391,42 +456,42 @@ "num_public_inputs": 0 }, { - "circuit_id": "427a4837-5518-48b3-8eab-4ea5a6f02e73", + "circuit_id": "0fc62575-bc4c-418f-9172-07efede02fa6", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:52.440Z", + "date_created": "2024-08-21T23:35:16.359Z", "meta": {}, - "num_proofs": 1, + "num_proofs": 0, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "sdk-create-proof-multiplier2-circuit" + "from-tarball" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H01M56.932509S", - "compute_time_sec": 116.932509, - "compute_times": { - "total": 116.947, - "clean_up": 0.01449, - "create_cpp": 0.52798, - "file_setup": 97.77902, - "compile_cpp": 8.05849, - "create_r1cs": 0.02969, - "save_results": 1.82312, - "get_r1cs_info": 0.00087, - "groth16_setup": 2.5213, - "export_verification_key": 2.47194, - "download_trusted_setup_file": 1.50222, - "solidity_contract_generation": 2.21788 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.477889S", + "compute_time_sec": 7.477889, + "compute_times": { + "total": 7.54664, + "clean_up": 0.06875, + "create_cpp": 0.0871, + "file_setup": 0.4021, + "compile_cpp": 3.17738, + "create_r1cs": 0.0069, + "save_results": 0.77626, + "get_r1cs_info": 0.0002, + "groth16_setup": 0.99635, + "export_verification_key": 0.99693, + "download_trusted_setup_file": 0.00076, + "solidity_contract_generation": 1.0339 }, - "file_size": 236749, - "queue_time": "P0DT00H00M30.976068S", - "queue_time_sec": 30.976068, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 236732, + "queue_time": "P0DT00H00M18.570880S", + "queue_time_sec": 18.57088, + "uploaded_file_name": "circom-multiplier2.tgz", "has_smart_contract_verifier": true, "has_verification_key": true, "verification_key": null, @@ -439,41 +504,41 @@ "num_public_inputs": 0 }, { - "circuit_id": "4d4cc670-ee3a-4738-b522-81107334f202", + "circuit_id": "b1498917-ac23-476b-bf79-03307108bf08", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:52.258Z", + "date_created": "2024-08-21T23:35:15.913Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-directory" + "from-file-array" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H01M58.973155S", - "compute_time_sec": 118.973155, - "compute_times": { - "total": 118.98578, - "clean_up": 0.01263, - "create_cpp": 0.4795, - "file_setup": 99.91266, - "compile_cpp": 8.12753, - "create_r1cs": 0.02391, - "save_results": 1.74646, - "get_r1cs_info": 0.00071, - "groth16_setup": 2.50129, - "export_verification_key": 2.51253, - "download_trusted_setup_file": 1.54761, - "solidity_contract_generation": 2.12095 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.378588S", + "compute_time_sec": 7.378588, + "compute_times": { + "total": 7.39004, + "clean_up": 0.01145, + "create_cpp": 0.09071, + "file_setup": 0.41562, + "compile_cpp": 3.1633, + "create_r1cs": 0.00655, + "save_results": 0.67372, + "get_r1cs_info": 0.0002, + "groth16_setup": 0.98235, + "export_verification_key": 1.03565, + "download_trusted_setup_file": 0.00076, + "solidity_contract_generation": 1.00972 }, - "file_size": 236749, - "queue_time": "P0DT00H00M35.053430S", - "queue_time_sec": 35.05343, + "file_size": 236740, + "queue_time": "P0DT00H00M10.373851S", + "queue_time_sec": 10.373851, "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -487,42 +552,42 @@ "num_public_inputs": 0 }, { - "circuit_id": "137532fa-f778-4a0f-a317-7017760256b6", + "circuit_id": "d52e58e3-cde4-45ac-9b02-fec2fd20a9ef", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:52.257Z", + "date_created": "2024-08-21T23:35:15.865Z", "meta": {}, - "num_proofs": 0, + "num_proofs": 1, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-browser-file-array" + "from-tarball-for-all-circuit-proofs" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M52.693765S", - "compute_time_sec": 52.693765, - "compute_times": { - "total": 52.70818, - "clean_up": 0.01441, - "create_cpp": 0.16283, - "file_setup": 42.27486, - "compile_cpp": 4.26531, - "create_r1cs": 0.01161, - "save_results": 1.62886, - "get_r1cs_info": 0.00046, - "groth16_setup": 0.92745, - "export_verification_key": 0.99228, - "download_trusted_setup_file": 1.51074, - "solidity_contract_generation": 0.91934 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.059811S", + "compute_time_sec": 7.059811, + "compute_times": { + "total": 7.11215, + "clean_up": 0.05234, + "create_cpp": 0.14946, + "file_setup": 0.44039, + "compile_cpp": 3.23232, + "create_r1cs": 0.00975, + "save_results": 0.67822, + "get_r1cs_info": 0.00024, + "groth16_setup": 0.87184, + "export_verification_key": 0.80623, + "download_trusted_setup_file": 0.00095, + "solidity_contract_generation": 0.8704 }, - "file_size": 236740, - "queue_time": "P0DT00H00M34.281548S", - "queue_time_sec": 34.281548, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 236732, + "queue_time": "P0DT00H00M18.365633S", + "queue_time_sec": 18.365633, + "uploaded_file_name": "circom-multiplier2.tgz", "has_smart_contract_verifier": true, "has_verification_key": true, "verification_key": null, @@ -535,41 +600,41 @@ "num_public_inputs": 0 }, { - "circuit_id": "e9a0163f-622b-4916-b025-cff64af1db89", + "circuit_id": "54d8deb7-6a78-4416-81a0-93888d1353db", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:52.256Z", + "date_created": "2024-08-21T23:35:15.848Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-tarball" + "from-tarball-for-get-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M46.075467S", - "compute_time_sec": 46.075467, - "compute_times": { - "total": 46.10441, - "clean_up": 0.02894, - "create_cpp": 0.10217, - "file_setup": 34.36306, - "compile_cpp": 3.95969, - "create_r1cs": 0.00944, - "save_results": 1.93607, - "get_r1cs_info": 0.00022, - "groth16_setup": 1.36543, - "export_verification_key": 1.33989, - "download_trusted_setup_file": 1.63304, - "solidity_contract_generation": 1.36647 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.027974S", + "compute_time_sec": 7.027974, + "compute_times": { + "total": 7.04593, + "clean_up": 0.01796, + "create_cpp": 0.14965, + "file_setup": 0.49017, + "compile_cpp": 3.27036, + "create_r1cs": 0.00899, + "save_results": 0.67517, + "get_r1cs_info": 0.00044, + "groth16_setup": 0.80247, + "export_verification_key": 0.81299, + "download_trusted_setup_file": 0.00093, + "solidity_contract_generation": 0.8168 }, "file_size": 236732, - "queue_time": "P0DT00H00M32.790775S", - "queue_time_sec": 32.790775, + "queue_time": "P0DT00H00M10.136340S", + "queue_time_sec": 10.13634, "uploaded_file_name": "circom-multiplier2.tgz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -583,41 +648,89 @@ "num_public_inputs": 0 }, { - "circuit_id": "d35bc1e7-7171-4412-88f1-cf8beee7f72e", + "circuit_id": "1ecaf789-ef4b-4ae4-9e31-50f6257caa76", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:52.255Z", + "date_created": "2024-08-21T23:35:15.816Z", "meta": {}, "num_proofs": 1, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-browser-file-array-for-get-all-circuit-proofs" + "from-tarball-for-get-proof" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H01M08.956182S", - "compute_time_sec": 68.956182, - "compute_times": { - "total": 68.9819, - "clean_up": 0.02572, - "create_cpp": 0.21324, - "file_setup": 55.55895, - "compile_cpp": 5.5701, - "create_r1cs": 0.01331, - "save_results": 1.55957, - "get_r1cs_info": 0.00045, - "groth16_setup": 1.52361, - "export_verification_key": 1.49097, - "download_trusted_setup_file": 1.51542, - "solidity_contract_generation": 1.51055 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.218341S", + "compute_time_sec": 7.218341, + "compute_times": { + "total": 7.25889, + "clean_up": 0.04055, + "create_cpp": 0.15405, + "file_setup": 0.51765, + "compile_cpp": 3.33217, + "create_r1cs": 0.00831, + "save_results": 0.73074, + "get_r1cs_info": 0.0002, + "groth16_setup": 0.80283, + "export_verification_key": 0.85158, + "download_trusted_setup_file": 0.00086, + "solidity_contract_generation": 0.81995 }, - "file_size": 236740, - "queue_time": "P0DT00H00M34.277949S", - "queue_time_sec": 34.277949, + "file_size": 236732, + "queue_time": "P0DT00H00M01.651410S", + "queue_time_sec": 1.65141, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "8c72f13b-0b74-44c7-a2bc-054a03084523", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-21T23:35:15.808Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.382512S", + "compute_time_sec": 7.382512, + "compute_times": { + "total": 7.40614, + "clean_up": 0.02363, + "create_cpp": 0.09245, + "file_setup": 0.42556, + "compile_cpp": 3.18524, + "create_r1cs": 0.00721, + "save_results": 0.68781, + "get_r1cs_info": 0.00024, + "groth16_setup": 0.99695, + "export_verification_key": 1.01071, + "download_trusted_setup_file": 0.00076, + "solidity_contract_generation": 0.97557 + }, + "file_size": 236759, + "queue_time": "P0DT00H00M01.758763S", + "queue_time_sec": 1.758763, "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -631,41 +744,232 @@ "num_public_inputs": 0 }, { - "circuit_id": "d43af0da-5e3f-409b-a104-2aa069adf7fd", + "circuit_id": "91473f0e-9933-4014-979e-7e2390f3ed3d", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-08-21T23:33:19.328Z", + "meta": { + "metaKey": "metaValue" + }, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "my-tag" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.584325S", + "compute_time_sec": 8.584325, + "compute_times": { + "total": 8.73798, + "clean_up": 0.15365, + "create_cpp": 0.09807, + "file_setup": 0.71154, + "compile_cpp": 3.23894, + "create_r1cs": 0.01581, + "save_results": 0.65075, + "get_r1cs_info": 0.00026, + "groth16_setup": 0.95126, + "export_verification_key": 0.97717, + "download_trusted_setup_file": 0.94485, + "solidity_contract_generation": 0.99566 + }, + "file_size": 1663161, + "queue_time": "P0DT00H00M01.724544S", + "queue_time_sec": 1.724544, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "7da421c6-2713-4346-97d0-660919607fe2", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-08-13T18:29:15.571Z", + "meta": { + "host": "fermium", + "user": "evan", + "username": "sangaline", + "whatever": "some value", + "something-else": "another-value" + }, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.400787S", + "compute_time_sec": 1.400787, + "compute_times": { + "total": 1.45093, + "clean_up": 0.05014, + "file_setup": 0.31854, + "nargo_checks": 0.44164, + "save_results": 0.14974, + "solidity_contract_generation": 0.49087 + }, + "file_size": 4014, + "queue_time": "P0DT00H00M00.953266S", + "queue_time_sec": 0.953266, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "e7117407-569f-46b3-a49e-0f5dbd469060", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-08-13T18:28:52.155Z", + "meta": { + "host": "fermium", + "user": "evan", + "username": "sangaline", + "whatever": "some value" + }, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.782416S", + "compute_time_sec": 1.782416, + "compute_times": { + "total": 1.96914, + "clean_up": 0.18672, + "file_setup": 0.35642, + "nargo_checks": 0.50099, + "save_results": 0.35285, + "solidity_contract_generation": 0.57216 + }, + "file_size": 4014, + "queue_time": "P0DT00H00M01.261345S", + "queue_time_sec": 1.261345, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "295f296e-bbae-4467-937a-abcb51c00450", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-08-13T18:26:25.758Z", + "meta": { + "host": "fermium", + "user": "evan", + "username": "sangaline" + }, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.513600S", + "compute_time_sec": 1.5136, + "compute_times": { + "total": 1.55187, + "clean_up": 0.03827, + "file_setup": 0.30334, + "nargo_checks": 0.47886, + "save_results": 0.21069, + "solidity_contract_generation": 0.52071 + }, + "file_size": 4014, + "queue_time": "P0DT00H00M01.083507S", + "queue_time_sec": 1.083507, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "40f5f784-7f89-452f-931f-6e8f6b3a09d6", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T21:31:51.647Z", + "date_created": "2024-08-12T23:05:48.684Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-file-array" + "from-browser-file-array" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H01M08.590867S", - "compute_time_sec": 68.590867, - "compute_times": { - "total": 68.60212, - "clean_up": 0.01125, - "create_cpp": 0.2474, - "file_setup": 53.75751, - "compile_cpp": 6.6544, - "create_r1cs": 0.01409, - "save_results": 1.58545, - "get_r1cs_info": 0.0004, - "groth16_setup": 1.63287, - "export_verification_key": 1.62941, - "download_trusted_setup_file": 1.41288, - "solidity_contract_generation": 1.65647 + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.799958S", + "compute_time_sec": 6.799958, + "compute_times": { + "total": 6.81705, + "clean_up": 0.01709, + "create_cpp": 0.08746, + "file_setup": 0.23721, + "compile_cpp": 3.18392, + "create_r1cs": 0.00733, + "save_results": 0.36597, + "get_r1cs_info": 0.00025, + "groth16_setup": 0.99737, + "export_verification_key": 0.94417, + "download_trusted_setup_file": 0.00079, + "solidity_contract_generation": 0.97548 }, "file_size": 236740, - "queue_time": "P0DT00H00M28.947466S", - "queue_time_sec": 28.947466, + "queue_time": "P0DT00H00M25.062594S", + "queue_time_sec": 25.062594, "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": true, "has_verification_key": true, @@ -677,1061 +981,17742 @@ "num_outputs": 1, "num_private_inputs": 2, "num_public_inputs": 0 - } - ], - "rawHeaders": [ - "Content-Length", - "18168", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:03:48 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d6765742d70726f6f660d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, - "response": { - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.493Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-tarball-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "931", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:03:48 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d70726f76652d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, - "response": { - "circuit_id": "991c35b0-5da2-4baf-ae42-be2480d98458", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.489Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-tarball-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "935", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:03:48 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a73646b2d6372656174652d70726f6f662d6d756c7469706c696572322d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800000000000003ed55cd6ee23010ce394f31b2f6001412c7e44782e5d4bdf6d4be80316ee2ddc48e6c876a8578f795934041b4622590ba5ae5bbd89ec9cc78c6df6498d04c55b3aa29ada84bc1350999d0ac113660adcabb1d18e3348ec1c338ca12ec568c49dcad4e97cdc18be2248bd3392651eae128cb700a1ebe43ecab688ca5dac337c7ea7281e3fa0fe0bda6d9597d4f516b9a5714bab70612e0002f7d3f9cf82f8530d053012cafea925a0eace0ec97015b500b0c84db71389087512b9404f50a14a8dcc03af09f55a31987d113d5ac80884c8160321f2fc02facadcd220c378a999e6a815061cead15329fb957b17c13be69d19efb9b98f06f0d99aa6a519e9b4e4200df3f26f3f44e7a188d61e794001086f083b392ea633a46e49296260070faee0442d68d05bafc40b83e17aac63a295bbe077854d2584d85b407af0cbeaf564061d259ef7ddf65a02497162a2a24ac4eef3b1a2ffdbb70845df67f9b43f0d32879970857fb1f93c8f57f1acff13c4a92c8f53f8ef1d0ffb7e2b4a6a7fb53ec10450b94a0295aa3058ad1fecb6e3be02bf041ff1b21375adcf10770a5ffe7845ccc7f1291a1ff6fc5b1a6047f3aff773e00fa6658c12b8a16800ed3b52701adeb90d622dc46bd645651295eb9b1b3cea6a5099a3a2f9256dcb9b8a454a7efe7f0cbeffae4b35ed5e86d2b5c4b92c49dacd66a2b64feecc2b4ba5c2b5b4469a77d135672631edb29cf75ebf0e101f9fbfb8cc50103060cf8eff107dc256db1001000000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, - "response": { - "circuit_id": "42244641-5311-4335-ba6f-45f8be17e8ad", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.488Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "sdk-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "944", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:03:48 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d616c6c2d636972637569742d70726f6f66730d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, - "response": { - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.560Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-tarball-for-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "940", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:03:48 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d6765742d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, - "response": { - "circuit_id": "088af0b5-7219-493d-9299-80cba9801fcb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.789Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-tarball-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "933", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:03:48 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/a2b5d905-5f79-4d0c-bc24-086e17b33f40/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.493Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-tarball-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "931", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:03:48 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d6469726563746f72790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800000000000003ed55cd6ee23010ce394f31b2f6001412c7e44782e5d4bdf6d4be80316ee2ddc48e6c876a8578f795934041b4622590ba5ae5bbd89ec9cc78c6df6498d04c55b3aa29ada84bc1350999d0ac113660adcabb1d18e3348ec1c338ca12ec568c49dcad4e97cdc18be2248bd3392651eae128cb700a1ebe43ecab688ca5dac337c7ea7281e3fa0fe0bda6d9597d4f516b9a5714bab70612e0002f7d3f9cf82f8530d053012cafea925a0eace0ec97015b500b0c84db71389087512b9404f50a14a8dcc03af09f55a31987d113d5ac80884c8160321f2fc02facadcd220c378a999e6a815061cead15329fb957b17c13be69d19efb9b98f06f0d99aa6a519e9b4e4200df3f26f3f44e7a188d61e794001086f083b392ea633a46e49296260070faee0442d68d05bafc40b83e17aac63a295bbe077854d2584d85b407af0cbeaf564061d259ef7ddf65a02497162a2a24ac4eef3b1a2ffdbb70845df67f9b43f0d32879970857fb1f93c8f57f1acff13c4a92c8f53f8ef1d0ffb7e2b4a6a7fb53ec10450b94a0295aa3058ad1fecb6e3be02bf041ff1b21375adcf10770a5ffe7845ccc7f1291a1ff6fc5b1a6047f3aff773e00fa6658c12b8a16800ed3b52701adeb90d622dc46bd645651295eb9b1b3cea6a5099a3a2f9256dcb9b8a454a7efe7f0cbeffae4b35ed5e86d2b5c4b92c49dacd66a2b64feecc2b4ba5c2b5b4469a77d135672631edb29cf75ebf0e101f9fbfb8cc50103060cf8eff107dc256db1001000000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, - "response": { - "circuit_id": "b72ea400-2d09-49b4-a404-2c22d5c130a1", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.745Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-directory" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "922", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:03:48 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/991c35b0-5da2-4baf-ae42-be2480d98458/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "991c35b0-5da2-4baf-ae42-be2480d98458", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.489Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.332778S", - "queue_time_sec": 0.332778, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "962", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:03:49 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, - "response": { - "circuit_id": "dcc44a41-540f-4ebe-949d-ad7b26e58816", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.848Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-tarball" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "917", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:03:49 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/42244641-5311-4335-ba6f-45f8be17e8ad/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "42244641-5311-4335-ba6f-45f8be17e8ad", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.488Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "sdk-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.444749S", - "queue_time_sec": 0.444749, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "971", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:03:49 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/e17b8bc6-b716-4996-8040-2a2521ed79ab/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.560Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.389084S", - "queue_time_sec": 0.389084, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "967", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:03:49 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/088af0b5-7219-493d-9299-80cba9801fcb/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "088af0b5-7219-493d-9299-80cba9801fcb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.789Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.309653S", - "queue_time_sec": 0.309653, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "960", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:03:49 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/create", - "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d66696c652d61727261790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", - "status": 201, - "response": { - "circuit_id": "8585a51c-3f3b-4a16-8cc8-05a0eb22abb3", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.491Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "923", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:03:49 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/b72ea400-2d09-49b4-a404-2c22d5c130a1/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "b72ea400-2d09-49b4-a404-2c22d5c130a1", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.745Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-directory" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "922", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:03:49 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/dcc44a41-540f-4ebe-949d-ad7b26e58816/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "dcc44a41-540f-4ebe-949d-ad7b26e58816", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.848Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-tarball" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "917", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:03:49 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/8585a51c-3f3b-4a16-8cc8-05a0eb22abb3/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "8585a51c-3f3b-4a16-8cc8-05a0eb22abb3", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.491Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Queued", - "tags": [ - "from-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": null, - "queue_time_sec": null, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, + }, + { + "circuit_id": "11cfd11d-fe70-423e-aa32-5f620cf972d0", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:48.639Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.095618S", + "compute_time_sec": 10.095618, + "compute_times": { + "total": 10.12361, + "clean_up": 0.02799, + "create_cpp": 0.1864, + "file_setup": 0.33376, + "compile_cpp": 4.95464, + "create_r1cs": 0.01214, + "save_results": 0.37405, + "get_r1cs_info": 0.00039, + "groth16_setup": 1.39507, + "export_verification_key": 1.41364, + "download_trusted_setup_file": 0.00127, + "solidity_contract_generation": 1.42426 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M26.405812S", + "queue_time_sec": 26.405812, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d47ade3b-70d4-4049-a6e8-53726653090e", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:48.636Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.685076S", + "compute_time_sec": 6.685076, + "compute_times": { + "total": 6.70481, + "clean_up": 0.01974, + "create_cpp": 0.10094, + "file_setup": 0.28324, + "compile_cpp": 3.1076, + "create_r1cs": 0.0073, + "save_results": 0.27857, + "get_r1cs_info": 0.00027, + "groth16_setup": 0.929, + "export_verification_key": 0.99756, + "download_trusted_setup_file": 0.00074, + "solidity_contract_generation": 0.97985 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M26.609308S", + "queue_time_sec": 26.609308, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "9cd231a9-a5cd-4a50-8320-8cd0162bdf0d", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:48.600Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "browser-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.541009S", + "compute_time_sec": 6.541009, + "compute_times": { + "total": 6.5843, + "clean_up": 0.04329, + "create_cpp": 0.1468, + "file_setup": 0.25857, + "compile_cpp": 3.31895, + "create_r1cs": 0.00913, + "save_results": 0.36187, + "get_r1cs_info": 0.00025, + "groth16_setup": 0.81427, + "export_verification_key": 0.81473, + "download_trusted_setup_file": 0.00083, + "solidity_contract_generation": 0.81561 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M27.537786S", + "queue_time_sec": 27.537786, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1f082c08-03fa-4126-816b-ccddefe9c852", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:48.535Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.476235S", + "compute_time_sec": 11.476235, + "compute_times": { + "total": 11.50009, + "clean_up": 0.02385, + "create_cpp": 0.23204, + "file_setup": 0.41135, + "compile_cpp": 6.16444, + "create_r1cs": 0.01427, + "save_results": 0.34245, + "get_r1cs_info": 0.00034, + "groth16_setup": 1.22686, + "export_verification_key": 1.20993, + "download_trusted_setup_file": 0.659, + "solidity_contract_generation": 1.21555 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M22.021184S", + "queue_time_sec": 22.021184, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ac61d835-05f5-4d67-96f7-c082f5833853", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:48.496Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.873591S", + "compute_time_sec": 9.873591, + "compute_times": { + "total": 9.89647, + "clean_up": 0.02288, + "create_cpp": 0.17659, + "file_setup": 0.35774, + "compile_cpp": 4.77295, + "create_r1cs": 0.01156, + "save_results": 0.42475, + "get_r1cs_info": 0.00043, + "groth16_setup": 1.41849, + "export_verification_key": 1.37705, + "download_trusted_setup_file": 0.00118, + "solidity_contract_generation": 1.33285 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M20.846903S", + "queue_time_sec": 20.846903, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "e80c9e43-8182-4ff9-bc8c-afaa8f0a0575", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:47.735Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.204718S", + "compute_time_sec": 7.204718, + "compute_times": { + "total": 7.22914, + "clean_up": 0.02443, + "create_cpp": 0.16717, + "file_setup": 0.29537, + "compile_cpp": 3.32816, + "create_r1cs": 0.01038, + "save_results": 0.30657, + "get_r1cs_info": 0.00022, + "groth16_setup": 0.82582, + "export_verification_key": 0.81222, + "download_trusted_setup_file": 0.64252, + "solidity_contract_generation": 0.81629 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M20.334752S", + "queue_time_sec": 20.334752, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f6689c00-e3e6-48a1-b51a-6619f0fa5979", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:46.960Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.534752S", + "compute_time_sec": 10.534752, + "compute_times": { + "total": 10.5595, + "clean_up": 0.02475, + "create_cpp": 0.16715, + "file_setup": 0.36699, + "compile_cpp": 5.25643, + "create_r1cs": 0.01763, + "save_results": 0.44305, + "get_r1cs_info": 0.00038, + "groth16_setup": 1.20904, + "export_verification_key": 1.21414, + "download_trusted_setup_file": 0.65826, + "solidity_contract_generation": 1.20168 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M20.460093S", + "queue_time_sec": 20.460093, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "3b0cce88-6408-4b4f-9801-8619f869b02e", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:46.908Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.391881S", + "compute_time_sec": 7.391881, + "compute_times": { + "total": 7.40364, + "clean_up": 0.01176, + "create_cpp": 0.09922, + "file_setup": 0.25722, + "compile_cpp": 3.11284, + "create_r1cs": 0.00787, + "save_results": 0.25749, + "get_r1cs_info": 0.00019, + "groth16_setup": 1.06558, + "export_verification_key": 0.99433, + "download_trusted_setup_file": 0.65038, + "solidity_contract_generation": 0.94677 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M20.043664S", + "queue_time_sec": 20.043664, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "75c50fa6-a8a8-4ad6-a87b-89ca3cce2c2e", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:46.902Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.045257S", + "compute_time_sec": 10.045257, + "compute_times": { + "total": 10.09846, + "clean_up": 0.0532, + "create_cpp": 0.17584, + "file_setup": 0.32888, + "compile_cpp": 4.91222, + "create_r1cs": 0.01278, + "save_results": 0.39128, + "get_r1cs_info": 0.00034, + "groth16_setup": 1.43044, + "export_verification_key": 1.42607, + "download_trusted_setup_file": 0.00118, + "solidity_contract_generation": 1.36623 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M12.996745S", + "queue_time_sec": 12.996745, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "7f84f888-dd5a-4afe-ba10-08aadfaef5a9", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:46.860Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.748466S", + "compute_time_sec": 9.748466, + "compute_times": { + "total": 9.76073, + "clean_up": 0.01227, + "create_cpp": 0.17175, + "file_setup": 0.34904, + "compile_cpp": 4.72895, + "create_r1cs": 0.01141, + "save_results": 0.36485, + "get_r1cs_info": 0.00036, + "groth16_setup": 1.37514, + "export_verification_key": 1.36383, + "download_trusted_setup_file": 0.00115, + "solidity_contract_generation": 1.38201 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M11.716344S", + "queue_time_sec": 11.716344, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "2660e301-8cb4-40ce-8c75-cd79ff90450f", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:46.822Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.520673S", + "compute_time_sec": 7.520673, + "compute_times": { + "total": 7.53326, + "clean_up": 0.01259, + "create_cpp": 0.08492, + "file_setup": 0.28797, + "compile_cpp": 3.15922, + "create_r1cs": 0.0081, + "save_results": 0.33451, + "get_r1cs_info": 0.00025, + "groth16_setup": 0.94378, + "export_verification_key": 1.00022, + "download_trusted_setup_file": 0.7057, + "solidity_contract_generation": 0.996 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M18.554877S", + "queue_time_sec": 18.554877, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "b3da5fbc-97a8-4a94-94c0-a291dee05bd9", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:46.790Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "sdk-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.409250S", + "compute_time_sec": 10.40925, + "compute_times": { + "total": 10.42244, + "clean_up": 0.01319, + "create_cpp": 0.18344, + "file_setup": 0.31535, + "compile_cpp": 5.08536, + "create_r1cs": 0.01289, + "save_results": 0.59526, + "get_r1cs_info": 0.00036, + "groth16_setup": 1.42832, + "export_verification_key": 1.41436, + "download_trusted_setup_file": 0.00135, + "solidity_contract_generation": 1.37255 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M01.027330S", + "queue_time_sec": 1.02733, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0cbbcbe1-d47d-418b-a41c-71e892d08270", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-12T23:05:46.726Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.846583S", + "compute_time_sec": 9.846583, + "compute_times": { + "total": 9.86128, + "clean_up": 0.0147, + "create_cpp": 0.17333, + "file_setup": 0.29503, + "compile_cpp": 4.85669, + "create_r1cs": 0.01042, + "save_results": 0.38661, + "get_r1cs_info": 0.00039, + "groth16_setup": 1.3717, + "export_verification_key": 1.38671, + "download_trusted_setup_file": 0.00143, + "solidity_contract_generation": 1.36427 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M00.957640S", + "queue_time_sec": 0.95764, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1088a9e7-2de1-4be5-b5f2-344d443f2cc0", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-08-12T23:04:35.380Z", + "meta": { + "tester": "yes" + }, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.678228S", + "compute_time_sec": 1.678228, + "compute_times": { + "total": 1.90554, + "clean_up": 0.22731, + "file_setup": 0.32047, + "nargo_checks": 0.53508, + "save_results": 0.22979, + "solidity_contract_generation": 0.59288 + }, + "file_size": 4006, + "queue_time": "P0DT00H00M01.076010S", + "queue_time_sec": 1.07601, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "fa7b501f-a6c7-4d69-935a-62be32ae4bec", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:21.855Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.348246S", + "compute_time_sec": 7.348246, + "compute_times": { + "total": 7.38924, + "clean_up": 0.04099, + "create_cpp": 0.09991, + "file_setup": 0.25757, + "compile_cpp": 3.06589, + "create_r1cs": 0.00794, + "save_results": 0.31376, + "get_r1cs_info": 0.00021, + "groth16_setup": 0.88828, + "export_verification_key": 0.9719, + "download_trusted_setup_file": 0.77651, + "solidity_contract_generation": 0.96627 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M32.602444S", + "queue_time_sec": 32.602444, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0737b469-040e-4324-af98-52ce526735bb", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:21.804Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "browser-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.929735S", + "compute_time_sec": 9.929735, + "compute_times": { + "total": 10.00048, + "clean_up": 0.07074, + "create_cpp": 0.16425, + "file_setup": 0.32554, + "compile_cpp": 5.28759, + "create_r1cs": 0.01569, + "save_results": 0.49122, + "get_r1cs_info": 0.0004, + "groth16_setup": 1.21661, + "export_verification_key": 1.20653, + "download_trusted_setup_file": 0.0012, + "solidity_contract_generation": 1.2207 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M31.815423S", + "queue_time_sec": 31.815423, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "bb10a68e-b516-40fb-b758-a9ff53bd72c1", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:21.796Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M26.950303S", + "compute_time_sec": 26.950303, + "compute_times": { + "total": 26.98597, + "clean_up": 0.03567, + "create_cpp": 0.10419, + "file_setup": 19.59736, + "compile_cpp": 3.13176, + "create_r1cs": 0.00721, + "save_results": 0.41821, + "get_r1cs_info": 0.00021, + "groth16_setup": 0.97674, + "export_verification_key": 0.99098, + "download_trusted_setup_file": 0.71627, + "solidity_contract_generation": 1.00738 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M31.575520S", + "queue_time_sec": 31.57552, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6b24a1b5-9886-42d7-ab06-86ea01823031", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:21.736Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.494367S", + "compute_time_sec": 11.494367, + "compute_times": { + "total": 11.52502, + "clean_up": 0.03065, + "create_cpp": 0.23717, + "file_setup": 0.40769, + "compile_cpp": 6.09275, + "create_r1cs": 0.01367, + "save_results": 0.43682, + "get_r1cs_info": 0.00038, + "groth16_setup": 1.22413, + "export_verification_key": 1.21219, + "download_trusted_setup_file": 0.66197, + "solidity_contract_generation": 1.2076 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M31.656854S", + "queue_time_sec": 31.656854, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "83befe4e-f790-4371-90de-7bf7f257a697", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:21.674Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M26.688754S", + "compute_time_sec": 26.688754, + "compute_times": { + "total": 26.71158, + "clean_up": 0.02282, + "create_cpp": 0.10782, + "file_setup": 19.59149, + "compile_cpp": 3.16112, + "create_r1cs": 0.00714, + "save_results": 0.29255, + "get_r1cs_info": 0.00025, + "groth16_setup": 0.90525, + "export_verification_key": 0.9527, + "download_trusted_setup_file": 0.72133, + "solidity_contract_generation": 0.9491 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M31.456998S", + "queue_time_sec": 31.456998, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1f4e1c1e-d6bc-4272-a3a3-70ebbbc68b85", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:21.656Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.416485S", + "compute_time_sec": 8.416485, + "compute_times": { + "total": 8.47632, + "clean_up": 0.05984, + "create_cpp": 0.16922, + "file_setup": 0.34058, + "compile_cpp": 4.15395, + "create_r1cs": 0.01103, + "save_results": 0.38936, + "get_r1cs_info": 0.0003, + "groth16_setup": 1.11222, + "export_verification_key": 1.12447, + "download_trusted_setup_file": 0.00111, + "solidity_contract_generation": 1.11425 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M32.407359S", + "queue_time_sec": 32.407359, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "2e3171fd-37d4-46b4-bcca-2b6f6e9e8fd6", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:20.163Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.041897S", + "compute_time_sec": 11.041897, + "compute_times": { + "total": 11.07424, + "clean_up": 0.03235, + "create_cpp": 0.16545, + "file_setup": 0.4492, + "compile_cpp": 5.65447, + "create_r1cs": 0.01316, + "save_results": 0.37601, + "get_r1cs_info": 0.00034, + "groth16_setup": 1.2197, + "export_verification_key": 1.23035, + "download_trusted_setup_file": 0.67878, + "solidity_contract_generation": 1.25443 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M32.525724S", + "queue_time_sec": 32.525724, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "7c0e874c-79c5-40a5-ba2e-51e6df5950b8", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:20.111Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.401747S", + "compute_time_sec": 8.401747, + "compute_times": { + "total": 8.41603, + "clean_up": 0.01428, + "create_cpp": 0.16018, + "file_setup": 0.33897, + "compile_cpp": 4.16407, + "create_r1cs": 0.01151, + "save_results": 0.36512, + "get_r1cs_info": 0.0003, + "groth16_setup": 1.12939, + "export_verification_key": 1.12994, + "download_trusted_setup_file": 0.00106, + "solidity_contract_generation": 1.1012 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M23.252076S", + "queue_time_sec": 23.252076, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ca487e77-4347-4c46-b29b-9672d2395082", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:20.085Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M49.258681S", + "compute_time_sec": 49.258681, + "compute_times": { + "total": 49.29152, + "clean_up": 0.03284, + "create_cpp": 0.15746, + "file_setup": 39.04559, + "compile_cpp": 5.27438, + "create_r1cs": 0.01734, + "save_results": 0.47914, + "get_r1cs_info": 0.00037, + "groth16_setup": 1.23483, + "export_verification_key": 1.19529, + "download_trusted_setup_file": 0.65578, + "solidity_contract_generation": 1.19851 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M31.041833S", + "queue_time_sec": 31.041833, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0715a166-9ef2-47cb-ad78-dee0627724b4", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:20.011Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "sdk-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.962090S", + "compute_time_sec": 9.96209, + "compute_times": { + "total": 10.00685, + "clean_up": 0.04476, + "create_cpp": 0.14995, + "file_setup": 0.33854, + "compile_cpp": 5.2948, + "create_r1cs": 0.02118, + "save_results": 0.4543, + "get_r1cs_info": 0.00046, + "groth16_setup": 1.23673, + "export_verification_key": 1.25723, + "download_trusted_setup_file": 0.00155, + "solidity_contract_generation": 1.20735 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M11.823976S", + "queue_time_sec": 11.823976, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5071acda-9351-4875-aa74-13b3473cc620", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:19.976Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.703009S", + "compute_time_sec": 9.703009, + "compute_times": { + "total": 9.74051, + "clean_up": 0.0375, + "create_cpp": 0.14344, + "file_setup": 0.32795, + "compile_cpp": 5.21843, + "create_r1cs": 0.01586, + "save_results": 0.41181, + "get_r1cs_info": 0.00038, + "groth16_setup": 1.20605, + "export_verification_key": 1.19687, + "download_trusted_setup_file": 0.00116, + "solidity_contract_generation": 1.18105 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M22.904148S", + "queue_time_sec": 22.904148, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c2ccca9a-2d64-461c-af3d-0d6db91d1467", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:19.958Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.387997S", + "compute_time_sec": 8.387997, + "compute_times": { + "total": 8.43474, + "clean_up": 0.04674, + "create_cpp": 0.16972, + "file_setup": 0.33613, + "compile_cpp": 4.18267, + "create_r1cs": 0.01208, + "save_results": 0.33333, + "get_r1cs_info": 0.00045, + "groth16_setup": 1.11167, + "export_verification_key": 1.12919, + "download_trusted_setup_file": 0.00109, + "solidity_contract_generation": 1.11167 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M13.993727S", + "queue_time_sec": 13.993727, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "b78c6857-025d-4d4f-8e1e-6eda36fd2442", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:19.888Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.870893S", + "compute_time_sec": 9.870893, + "compute_times": { + "total": 9.88869, + "clean_up": 0.0178, + "create_cpp": 0.14659, + "file_setup": 0.32921, + "compile_cpp": 5.29849, + "create_r1cs": 0.02083, + "save_results": 0.4783, + "get_r1cs_info": 0.00045, + "groth16_setup": 1.1945, + "export_verification_key": 1.21668, + "download_trusted_setup_file": 0.00194, + "solidity_contract_generation": 1.18389 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M01.021830S", + "queue_time_sec": 1.02183, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5e743104-119a-4306-bdd6-c3c315e1aee0", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-08-09T19:01:19.870Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.417482S", + "compute_time_sec": 8.417482, + "compute_times": { + "total": 8.45526, + "clean_up": 0.03778, + "create_cpp": 0.16059, + "file_setup": 0.31916, + "compile_cpp": 4.25222, + "create_r1cs": 0.01103, + "save_results": 0.3367, + "get_r1cs_info": 0.00028, + "groth16_setup": 1.11481, + "export_verification_key": 1.11751, + "download_trusted_setup_file": 0.00125, + "solidity_contract_generation": 1.10392 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.926162S", + "queue_time_sec": 0.926162, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "738f2fc6-60ee-466e-905c-0623ebd5cf8c", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-08-09T13:01:18.136Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.615437S", + "compute_time_sec": 1.615437, + "compute_times": { + "total": 1.82532, + "clean_up": 0.20988, + "file_setup": 0.35671, + "nargo_checks": 0.49545, + "save_results": 0.21573, + "solidity_contract_generation": 0.54754 + }, + "file_size": 4063, + "queue_time": "P0DT00H00M01.144743S", + "queue_time_sec": 1.144743, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "3854e241-e7ee-4156-a96a-a52640d0f450", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-08-02T11:12:34.252Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M04.664465S", + "compute_time_sec": 4.664465, + "compute_times": { + "total": 11.64026, + "clean_up": 6.9758, + "file_setup": 1.6147, + "create_r1cs": 0.01748, + "create_wasm": 0.02918, + "save_results": 0.35582, + "get_r1cs_info": 0.00024, + "groth16_setup": 0.87166, + "export_verification_key": 0.91598, + "download_trusted_setup_file": 0.00103, + "solidity_contract_generation": 0.85837 + }, + "file_size": 7010277, + "queue_time": "P0DT00H00M01.646554S", + "queue_time_sec": 1.646554, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "5fa162bf-91f3-414a-a463-21e17f2ac1ed", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-08-02T10:53:45.293Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M04.697351S", + "compute_time_sec": 4.697351, + "compute_times": { + "total": 10.9162, + "clean_up": 6.21885, + "file_setup": 1.60703, + "create_r1cs": 0.01845, + "create_wasm": 0.02689, + "save_results": 0.43377, + "get_r1cs_info": 0.00033, + "groth16_setup": 0.86629, + "export_verification_key": 0.86547, + "download_trusted_setup_file": 0.00105, + "solidity_contract_generation": 0.87808 + }, + "file_size": 7010277, + "queue_time": "P0DT00H00M01.651321S", + "queue_time_sec": 1.651321, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "cb5c62df-341f-43cd-b91a-6a6e18276e82", + "circuit_name": "merkle_tree_26", + "project_name": "merkle_tree_26", + "circuit_type": "noir", + "date_created": "2024-07-31T13:01:29.238Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.031891S", + "compute_time_sec": 6.031891, + "compute_times": { + "total": 6.04333, + "clean_up": 0.01144, + "file_setup": 0.32749, + "nargo_checks": 1.44967, + "save_results": 0.37178, + "solidity_contract_generation": 3.88295 + }, + "file_size": 1291, + "queue_time": "P0DT00H00M01.627932S", + "queue_time_sec": 1.627932, + "uploaded_file_name": "merkle_tree_26.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1988, + "circuit_size": 29032, + "curve": "bn254", + "nargo_package_name": "merkleTree", + "noir_version": "0.26.0" + }, + { + "circuit_id": "cbd98e10-431d-4b56-8801-7abd24522afe", + "circuit_name": "gnark-circuit", + "project_name": "gnark-circuit", + "circuit_type": "gnark", + "date_created": "2024-07-19T11:01:27.061Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M19.337811S", + "compute_time_sec": 19.337811, + "compute_times": { + "total": 22.4641, + "compile": 16.48168, + "clean_up": 3.12629, + "file_setup": 2.26151, + "save_results": 0.5514, + "compile_r1cs_and_keygen": 0.02526, + "solidity_contract_generation": 0.01796 + }, + "file_size": 19646240, + "queue_time": "P0DT00H00M01.469956S", + "queue_time_sec": 1.469956, + "uploaded_file_name": "gnark-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.10.0" + }, + { + "circuit_id": "b8a24762-6b4c-4903-9ad5-fecf7fb0b474", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-07-19T10:20:57.174Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.752308S", + "compute_time_sec": 1.752308, + "compute_times": { + "total": 1.84963, + "clean_up": 0.09732, + "file_setup": 0.32592, + "nargo_checks": 0.58956, + "save_results": 0.2406, + "solidity_contract_generation": 0.59624 + }, + "file_size": 2283, + "queue_time": "P0DT00H00M01.447588S", + "queue_time_sec": 1.447588, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "521c7dd5-e969-4fbe-a508-aeb1addc307b", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-07-19T10:13:01.241Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M04.518297S", + "compute_time_sec": 4.518297, + "compute_times": { + "total": 4.60812, + "clean_up": 0.08982, + "file_setup": 0.37999, + "create_r1cs": 0.03238, + "create_wasm": 0.04552, + "save_results": 0.4626, + "get_r1cs_info": 0.00045, + "groth16_setup": 1.20741, + "export_verification_key": 1.22526, + "download_trusted_setup_file": 0.00138, + "solidity_contract_generation": 1.16333 + }, + "file_size": 1480629, + "queue_time": "P0DT00H00M01.471078S", + "queue_time_sec": 1.471078, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "a71b3535-f27d-4863-a3d8-cd7346a6dcca", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-07-19T10:08:35.335Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M05.168259S", + "compute_time_sec": 5.168259, + "compute_times": { + "total": 5.47811, + "clean_up": 0.30985, + "file_setup": 0.36323, + "create_r1cs": 0.03021, + "create_wasm": 0.04972, + "save_results": 0.49722, + "get_r1cs_info": 0.00058, + "groth16_setup": 1.42192, + "export_verification_key": 1.42946, + "download_trusted_setup_file": 0.00224, + "solidity_contract_generation": 1.37368 + }, + "file_size": 1480629, + "queue_time": "P0DT00H00M01.434949S", + "queue_time_sec": 1.434949, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "282ffebb-0941-49fb-a611-00e17e5b4566", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-07-19T10:07:58.103Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M04.503026S", + "compute_time_sec": 4.503026, + "compute_times": { + "total": 4.65882, + "clean_up": 0.15579, + "file_setup": 0.35785, + "create_r1cs": 0.02864, + "create_wasm": 0.04352, + "save_results": 0.45469, + "get_r1cs_info": 0.00058, + "groth16_setup": 1.22033, + "export_verification_key": 1.19586, + "download_trusted_setup_file": 0.00229, + "solidity_contract_generation": 1.19925 + }, + "file_size": 1480629, + "queue_time": "P0DT00H00M01.498602S", + "queue_time_sec": 1.498602, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "231e759b-3593-4e4e-99db-d3e1f84ed5f9", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-07-19T10:06:48.839Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M05.055862S", + "compute_time_sec": 5.055862, + "compute_times": { + "total": 5.28476, + "clean_up": 0.2289, + "file_setup": 0.36681, + "create_r1cs": 0.02837, + "create_wasm": 0.04199, + "save_results": 0.46763, + "get_r1cs_info": 0.00058, + "groth16_setup": 1.37023, + "export_verification_key": 1.38528, + "download_trusted_setup_file": 0.00233, + "solidity_contract_generation": 1.39265 + }, + "file_size": 1480629, + "queue_time": "P0DT00H00M01.459166S", + "queue_time_sec": 1.459166, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "c6dd7074-3e45-49b3-80b7-f6c359b48f07", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-06-17T22:42:53.060Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.977024S", + "compute_time_sec": 6.977024, + "compute_times": { + "total": 7.03644, + "clean_up": 0.05942, + "create_cpp": 0.08667, + "file_setup": 0.31258, + "compile_cpp": 3.23275, + "create_r1cs": 0.0148, + "save_results": 0.29344, + "get_r1cs_info": 0.00022, + "groth16_setup": 1.00972, + "export_verification_key": 1.03524, + "download_trusted_setup_file": 0.00081, + "solidity_contract_generation": 0.9908 + }, + "file_size": 1663286, + "queue_time": "P0DT00H00M01.733692S", + "queue_time_sec": 1.733692, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "278eb81b-6040-4765-b5e1-284ea9e5fff8", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-06-17T22:35:31.810Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.224465S", + "compute_time_sec": 7.224465, + "compute_times": { + "total": 7.33047, + "clean_up": 0.106, + "create_cpp": 0.09868, + "file_setup": 0.32158, + "compile_cpp": 3.38729, + "create_r1cs": 0.01504, + "save_results": 0.34443, + "get_r1cs_info": 0.0003, + "groth16_setup": 0.96342, + "export_verification_key": 1.04933, + "download_trusted_setup_file": 0.00098, + "solidity_contract_generation": 1.04343 + }, + "file_size": 1663286, + "queue_time": "P0DT00H00M01.573552S", + "queue_time_sec": 1.573552, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "8f389feb-06c3-4871-bbc1-c18f5be26724", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-06-17T20:19:15.425Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.992392S", + "compute_time_sec": 6.992392, + "compute_times": { + "total": 7.13204, + "clean_up": 0.13965, + "create_cpp": 0.08715, + "file_setup": 0.32133, + "compile_cpp": 3.2835, + "create_r1cs": 0.01515, + "save_results": 0.32241, + "get_r1cs_info": 0.00024, + "groth16_setup": 1.00621, + "export_verification_key": 0.98384, + "download_trusted_setup_file": 0.00092, + "solidity_contract_generation": 0.97164 + }, + "file_size": 1663286, + "queue_time": "P0DT00H00M01.699624S", + "queue_time_sec": 1.699624, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "d7faf575-f2ed-495f-bb75-b79e4c02fcce", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-06-13T13:07:37.979Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.373573S", + "compute_time_sec": 1.373573, + "compute_times": { + "total": 1.41537, + "clean_up": 0.0418, + "file_setup": 0.25079, + "nargo_checks": 0.35975, + "save_results": 0.37347, + "solidity_contract_generation": 0.38957 + }, + "file_size": 1663, + "queue_time": "P0DT00H00M05.057593S", + "queue_time_sec": 5.057593, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "b54283e7-667a-469a-bd51-6584c6d60f0a", + "circuit_name": "gnark-circuit", + "project_name": "gnark-circuit", + "circuit_type": "gnark", + "date_created": "2024-06-13T13:07:34.304Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.852478S", + "compute_time_sec": 10.852478, + "compute_times": { + "total": 12.56904, + "compile": 7.95976, + "clean_up": 1.71656, + "file_setup": 2.49853, + "save_results": 0.37433, + "compile_r1cs_and_keygen": 0.01102, + "solidity_contract_generation": 0.00883 + }, + "file_size": 19616436, + "queue_time": "P0DT00H00M02.872982S", + "queue_time_sec": 2.872982, + "uploaded_file_name": "gnark-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.10.0" + }, + { + "circuit_id": "5eb11dc4-ed4d-4143-af9b-06a54fccc34d", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-06-13T13:07:27.726Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.958765S", + "compute_time_sec": 6.958765, + "compute_times": { + "total": 6.99971, + "clean_up": 0.04095, + "create_cpp": 0.09151, + "file_setup": 0.30116, + "compile_cpp": 3.23925, + "create_r1cs": 0.01539, + "save_results": 0.34331, + "get_r1cs_info": 0.00023, + "groth16_setup": 1.0237, + "export_verification_key": 0.97533, + "download_trusted_setup_file": 0.00092, + "solidity_contract_generation": 0.96796 + }, + "file_size": 1663212, + "queue_time": "P0DT00H00M01.597573S", + "queue_time_sec": 1.597573, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "47742ceb-2d16-4589-85a7-4ff7d4e29142", + "circuit_name": "axiom", + "project_name": "axiom", + "circuit_type": "halo2", + "date_created": "2024-06-13T13:07:18.315Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "shplonk", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M20.700250S", + "compute_time_sec": 20.70025, + "compute_times": { + "total": 22.18049, + "compile": 19.48207, + "clean_up": 1.48024, + "file_setup": 0.35545, + "save_results": 0.57822, + "generate_keys": 0.28441, + "download_trusted_setup_file": 0.00011 + }, + "file_size": 44949300, + "queue_time": "P0DT00H00M01.663237S", + "queue_time_sec": 1.663237, + "uploaded_file_name": "axiom.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "class_name": "axiom::circuit_def::CircuitInput", + "curve": "bn254", + "degree": 13, + "halo2_version": "axiom-v0.3.0" + }, + { + "circuit_id": "e55dbd95-120c-4995-9923-24625a7723cd", + "circuit_name": "pse", + "project_name": "pse", + "circuit_type": "halo2", + "date_created": "2024-06-13T13:06:48.984Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "shplonk", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M34.060405S", + "compute_time_sec": 34.060405, + "compute_times": { + "total": 36.90269, + "compile": 15.68371, + "clean_up": 2.84229, + "file_setup": 0.28603, + "save_results": 0.53678, + "generate_keys": 2.89852, + "precompilation_checks": 14.65526, + "download_trusted_setup_file": 0.00011 + }, + "file_size": 36273032, + "queue_time": "P0DT00H00M01.908869S", + "queue_time_sec": 1.908869, + "uploaded_file_name": "pse.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "class_name": "pse::circuit::EqualCircuit", + "curve": "bn254", + "degree": 13, + "halo2_version": "pse-v0.3.0" + }, + { + "circuit_id": "227716dc-3f87-43a2-b916-f1e462efcec6", + "circuit_name": "zk-passport", + "project_name": "zk-passport", + "circuit_type": "circom", + "date_created": "2024-06-12T13:27:35.158Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.470085S", + "compute_time_sec": 2.470085, + "compute_times": { + "total": 8.32465, + "clean_up": 5.85456, + "create_cpp": 0.00668, + "file_setup": 2.4634 + }, + "file_size": 110859257, + "queue_time": "P0DT00H00M07.108247S", + "queue_time_sec": 7.108247, + "uploaded_file_name": "zk-passport.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: /opt/sindri/share/circom-v2.1.8/circom.bin -l /forge/data/pods/zk-workers-compile-c8bfd8548-wxjvz/circuits/227716dc-3f87-43a2-b916-f1e462efcec6_1718198862266328/code -l /forge/data/pods/zk-workers-compile-c8bfd8548-wxjvz/circuits/227716dc-3f87-43a2-b916-f1e462efcec6_1718198862266328/code/node_modules --output /forge/data/pods/zk-workers-compile-c8bfd8548-wxjvz/circuits/227716dc-3f87-43a2-b916-f1e462efcec6_1718198862266328 --c /forge/data/pods/zk-workers-compile-c8bfd8548-wxjvz/circuits/227716dc-3f87-43a2-b916-f1e462efcec6_1718198862266328/code/./circuits/disclose.circom stdout: stderr: error[P1014]: The file binary-merkle-root.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "dd0a7009-a212-40a8-bb98-2e559d2e1ef3", + "circuit_name": "zk-passport", + "project_name": "zk-passport", + "circuit_type": "circom", + "date_created": "2024-06-12T02:56:58.894Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.439233S", + "compute_time_sec": 2.439233, + "compute_times": { + "total": 9.3845, + "clean_up": 6.94526, + "create_cpp": 0.00835, + "file_setup": 2.43088 + }, + "file_size": 110858052, + "queue_time": "P0DT00H00M07.252323S", + "queue_time_sec": 7.252323, + "uploaded_file_name": "zk-passport.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: /opt/sindri/share/circom-v2.1.8/circom.bin -l /forge/data/pods/zk-workers-compile-c8bfd8548-cdxc5/circuits/dd0a7009-a212-40a8-bb98-2e559d2e1ef3_1718161026146783/code -l /forge/data/pods/zk-workers-compile-c8bfd8548-cdxc5/circuits/dd0a7009-a212-40a8-bb98-2e559d2e1ef3_1718161026146783/code/node_modules --output /forge/data/pods/zk-workers-compile-c8bfd8548-cdxc5/circuits/dd0a7009-a212-40a8-bb98-2e559d2e1ef3_1718161026146783 --c /forge/data/pods/zk-workers-compile-c8bfd8548-cdxc5/circuits/dd0a7009-a212-40a8-bb98-2e559d2e1ef3_1718161026146783/code/./circuits/disclose.circom stdout: stderr: error[P1014]: The file poseidon.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "68259281-a540-4cc9-bb09-8da9da4a1bbe", + "circuit_name": "zk-passport", + "project_name": "zk-passport", + "circuit_type": "circom", + "date_created": "2024-06-12T02:54:19.111Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.519688S", + "compute_time_sec": 2.519688, + "compute_times": { + "total": 9.012, + "clean_up": 6.49231, + "create_cpp": 0.00771, + "file_setup": 2.51198 + }, + "file_size": 110856981, + "queue_time": "P0DT00H00M07.764792S", + "queue_time_sec": 7.764792, + "uploaded_file_name": "zk-passport.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: /opt/sindri/share/circom-v2.1.8/circom.bin -l /forge/data/pods/zk-workers-compile-c8bfd8548-wxjvz/circuits/68259281-a540-4cc9-bb09-8da9da4a1bbe_1718160866876246/code -l /forge/data/pods/zk-workers-compile-c8bfd8548-wxjvz/circuits/68259281-a540-4cc9-bb09-8da9da4a1bbe_1718160866876246/code/node_modules --output /forge/data/pods/zk-workers-compile-c8bfd8548-wxjvz/circuits/68259281-a540-4cc9-bb09-8da9da4a1bbe_1718160866876246 --c /forge/data/pods/zk-workers-compile-c8bfd8548-wxjvz/circuits/68259281-a540-4cc9-bb09-8da9da4a1bbe_1718160866876246/code/./circuits/disclose.circom stdout: stderr: error[P1014]: The file binary-merkle-root.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "ffb02200-d072-4270-96fb-02301b28acf9", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-05-29T20:00:24.210Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M12.142088S", + "compute_time_sec": 12.142088, + "compute_times": { + "total": 12.14209, + "clean_up": 0.07621, + "create_cpp": 0.22902, + "file_setup": 0.4798, + "compile_cpp": 4.84601, + "create_r1cs": 0.03965, + "save_results": 0.39604, + "get_r1cs_info": 0.00069, + "groth16_setup": 1.85973, + "export_verification_key": 1.81522, + "download_trusted_setup_file": 0.58896, + "solidity_contract_generation": 1.81076 + }, + "file_size": 1663143, + "queue_time": "P0DT00H00M00.936260S", + "queue_time_sec": 0.93626, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "39f098fc-77cf-4985-b9e7-718fcae78284", + "circuit_name": "gnark-circuit", + "project_name": "gnark-circuit", + "circuit_type": "gnark", + "date_created": "2024-05-29T20:00:20.799Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H01M04.211279S", + "compute_time_sec": 64.211279, + "compute_times": { + "total": 64.21128, + "clean_up": 62.42694, + "file_setup": 1.78433 + }, + "file_size": 4800, + "queue_time": "P0DT00H00M00.854970S", + "queue_time_sec": 0.85497, + "uploaded_file_name": "gnark-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go mod tidy stdout: stderr: go: github.com/sindri-labs/gnark-scaffold/example@v0.0.0-00010101000000-000000000000 requires\n\tgithub.com/consensys/gnark@v0.9.0: Get \"https://proxy.golang.org/github.com/consensys/gnark/@v/v0.9.0.mod\": dial tcp 142.250.80.49:443: i/o timeout\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "d18ae6f4-3616-4503-8c06-adff5548c801", + "circuit_name": "sindri-semaphore-mtb", + "project_name": "sindri-semaphore-mtb", + "circuit_type": "gnark", + "date_created": "2024-05-08T19:12:38.637Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.270310S", + "compute_time_sec": 2.27031, + "compute_times": { + "total": 2.27031, + "clean_up": 1.39493, + "file_setup": 0.87538 + }, + "file_size": 112861, + "queue_time": "P0DT00H00M01.321801S", + "queue_time_sec": 1.321801, + "uploaded_file_name": "sindri-semaphore-mtb.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: prover.go:20:2: import \"github.com/sindri-labs/gnark-scaffold/example\" is a program, not an importable package\n", + "curve": "bn254", + "gnark_version": "v0.8.1" + }, + { + "circuit_id": "1f5b4d3a-7527-4a52-9da7-7670996251ae", + "circuit_name": "sindri-semaphore-mtb", + "project_name": "sindri-semaphore-mtb", + "circuit_type": "gnark", + "date_created": "2024-05-08T19:11:25.692Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.061680S", + "compute_time_sec": 9.06168, + "compute_times": { + "total": 9.06168, + "clean_up": 7.20553, + "file_setup": 1.85615 + }, + "file_size": 113688, + "queue_time": "P0DT00H00M01.271071S", + "queue_time_sec": 1.271071, + "uploaded_file_name": "sindri-semaphore-mtb.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: prover.go:20:2: import \"github.com/sindri-labs/gnark-scaffold/example\" is a program, not an importable package\n", + "curve": "bn254", + "gnark_version": "v0.8.1" + }, + { + "circuit_id": "e2ab4084-7edb-4164-b482-9dc7147fc790", + "circuit_name": "sindri-semaphore-mtb", + "project_name": "sindri-semaphore-mtb", + "circuit_type": "gnark", + "date_created": "2024-05-08T19:10:39.980Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M04.106391S", + "compute_time_sec": 4.106391, + "compute_times": { + "total": 4.10639, + "clean_up": 1.43576, + "file_setup": 2.67063 + }, + "file_size": 115608, + "queue_time": "P0DT00H00M01.444373S", + "queue_time_sec": 1.444373, + "uploaded_file_name": "sindri-semaphore-mtb.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: circuit/main.go:10:2: package worldcoin/gnark-mbu/logging is not in std (/usr/local/go/src/worldcoin/gnark-mbu/logging)\ncircuit/main.go:11:2: package worldcoin/gnark-mbu/prover is not in std (/usr/local/go/src/worldcoin/gnark-mbu/prover)\ncircuit/main.go:12:2: package worldcoin/gnark-mbu/server is not in std (/usr/local/go/src/worldcoin/gnark-mbu/server)\nprover.go:20:2: import \"github.com/sindri-labs/gnark-scaffold/example\" is a program, not an importable package\n", + "curve": "bn254", + "gnark_version": "v0.8.1" + }, + { + "circuit_id": "42a2388a-69eb-4c85-9b88-2464ecbb11f9", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-05-08T19:04:26.870Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.663213S", + "compute_time_sec": 1.663213, + "compute_times": { + "total": 1.66321, + "clean_up": 0.06591, + "file_setup": 0.41307, + "nargo_checks": 0.55662, + "save_results": 0.01186, + "solidity_contract_generation": 0.61576 + }, + "file_size": 1862, + "queue_time": "P0DT00H00M01.193742S", + "queue_time_sec": 1.193742, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "6b5b3717-e741-481c-975a-8a1097b8a8b5", + "circuit_name": "merkle_tree_proof_verifier", + "project_name": "merkle_tree_proof_verifier", + "circuit_type": "gnark", + "date_created": "2024-05-07T15:05:20.708Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "plonk", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M16.577691S", + "compute_time_sec": 16.577691, + "compute_times": { + "total": 16.57769, + "compile": 13.25747, + "clean_up": 1.46744, + "file_setup": 1.44995, + "save_results": 0.0142, + "compile_r1cs_and_keygen": 0.36175, + "solidity_contract_generation": 0.02689 + }, + "file_size": 24913870, + "queue_time": "P0DT00H00M01.383574S", + "queue_time_sec": 1.383574, + "uploaded_file_name": "merkle_tree_proof_verifier.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "2e9936b2-4fd9-4197-8f58-f153045e5aa6", + "circuit_name": "plonk-v2", + "project_name": "plonk-v2", + "circuit_type": "gnark", + "date_created": "2024-05-06T23:06:17.484Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "plonk", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M18.924739S", + "compute_time_sec": 18.924739, + "compute_times": { + "total": 18.92474, + "compile": 14.28033, + "clean_up": 1.85156, + "file_setup": 2.37299, + "save_results": 0.00744, + "compile_r1cs_and_keygen": 0.39728, + "solidity_contract_generation": 0.01514 + }, + "file_size": 21425014, + "queue_time": "P0DT00H00M01.419993S", + "queue_time_sec": 1.419993, + "uploaded_file_name": "plonk-v2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "406dcfa3-b3cd-4509-afd7-429a35165cb0", + "circuit_name": "plonk", + "project_name": "plonk", + "circuit_type": "gnark", + "date_created": "2024-05-06T23:03:51.240Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "plonk", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M14.891320S", + "compute_time_sec": 14.89132, + "compute_times": { + "total": 14.89132, + "clean_up": 13.00031, + "file_setup": 1.89101 + }, + "file_size": 4774, + "queue_time": "P0DT00H00M01.237140S", + "queue_time_sec": 1.23714, + "uploaded_file_name": "plonk.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:21:2: plonk redeclared in this block\n\t./prover.go:16:2: other declaration of plonk\n./prover.go:21:2: \"github.com/sindri-labs/gnark-scaffold/example\" imported as plonk and not used\n./prover.go:57:20: undefined: plonk.Circuit\n./prover.go:251:17: undefined: plonk.FromJson\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "9ac9907f-7d0c-47d8-9c42-d00a02f3f92d", + "circuit_name": "cubic", + "project_name": "cubic", + "circuit_type": "gnark", + "date_created": "2024-05-06T23:03:02.077Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "plonk", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M19.344635S", + "compute_time_sec": 19.344635, + "compute_times": { + "total": 19.34464, + "compile": 14.32826, + "clean_up": 2.08091, + "file_setup": 2.4985, + "save_results": 0.00729, + "compile_r1cs_and_keygen": 0.41301, + "solidity_contract_generation": 0.01667 + }, + "file_size": 21426472, + "queue_time": "P0DT00H00M01.676427S", + "queue_time_sec": 1.676427, + "uploaded_file_name": "cubic.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "4a2a09eb-61ce-47b8-bcef-e49e9cc37125", + "circuit_name": "tester-circuit", + "project_name": "tester-circuit", + "circuit_type": "noir", + "date_created": "2024-04-22T16:28:04.169Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.386574S", + "compute_time_sec": 1.386574, + "compute_times": { + "total": 1.38657, + "clean_up": 0.01364, + "file_setup": 0.34649, + "nargo_checks": 0.46409, + "save_results": 0.00672, + "solidity_contract_generation": 0.55564 + }, + "file_size": 1671, + "queue_time": "P0DT00H00M01.243693S", + "queue_time_sec": 1.243693, + "uploaded_file_name": "tester-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "tester_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "87f917d5-3da2-4c41-8937-3717a5b2b08b", + "circuit_name": "tester-circuit", + "project_name": "tester-circuit", + "circuit_type": "noir", + "date_created": "2024-04-22T16:27:18.657Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "main" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.324427S", + "compute_time_sec": 1.324427, + "compute_times": { + "total": 1.32443, + "clean_up": 0.01468, + "file_setup": 0.33463, + "nargo_checks": 0.44369, + "save_results": 0.0068, + "solidity_contract_generation": 0.52462 + }, + "file_size": 1674, + "queue_time": "P0DT00H00M01.553507S", + "queue_time_sec": 1.553507, + "uploaded_file_name": "tester-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "tester_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "8d487f79-d4e6-4bfa-9a2d-6ea586e1f480", + "circuit_name": "tester-circuit", + "project_name": "tester-circuit", + "circuit_type": "noir", + "date_created": "2024-04-22T16:20:36.119Z", + "meta": {}, + "num_proofs": 2, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "v1.0.0" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.304837S", + "compute_time_sec": 1.304837, + "compute_times": { + "total": 1.30484, + "clean_up": 0.01199, + "file_setup": 0.32408, + "nargo_checks": 0.44232, + "save_results": 0.00542, + "solidity_contract_generation": 0.52103 + }, + "file_size": 1660, + "queue_time": "P0DT00H00M01.563638S", + "queue_time_sec": 1.563638, + "uploaded_file_name": "tester-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "tester_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "4d72d7aa-d2bc-4d51-8afc-75403c4095a8", + "circuit_name": "tester-circuit", + "project_name": "tester-circuit", + "circuit_type": "noir", + "date_created": "2024-04-22T16:19:57.266Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.343562S", + "compute_time_sec": 1.343562, + "compute_times": { + "total": 1.34356, + "clean_up": 0.01182, + "file_setup": 0.33748, + "nargo_checks": 0.44789, + "save_results": 0.00582, + "solidity_contract_generation": 0.54056 + }, + "file_size": 1666, + "queue_time": "P0DT00H00M01.656057S", + "queue_time_sec": 1.656057, + "uploaded_file_name": "tester-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "tester_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "5e571523-7930-4d4a-a3f8-d5c3c7d2bf17", + "circuit_name": "tester-circuit", + "project_name": "tester-circuit", + "circuit_type": "noir", + "date_created": "2024-04-22T16:13:21.693Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.356896S", + "compute_time_sec": 1.356896, + "compute_times": { + "total": 1.3569, + "clean_up": 0.02826, + "file_setup": 0.30386, + "nargo_checks": 0.4299, + "save_results": 0.00657, + "solidity_contract_generation": 0.5883 + }, + "file_size": 1655, + "queue_time": "P0DT00H00M01.635640S", + "queue_time_sec": 1.63564, + "uploaded_file_name": "tester-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "tester_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "cbd0c7b7-1c2b-4d79-b2d8-b0b2b9360042", + "circuit_name": "nn", + "project_name": "nn", + "circuit_type": "noir", + "date_created": "2024-04-22T15:11:02.448Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.344409S", + "compute_time_sec": 1.344409, + "compute_times": { + "total": 1.34441, + "clean_up": 0.04438, + "file_setup": 0.31571, + "nargo_checks": 0.43685, + "save_results": 0.00695, + "solidity_contract_generation": 0.54053 + }, + "file_size": 1651, + "queue_time": "P0DT00H00M01.325815S", + "queue_time_sec": 1.325815, + "uploaded_file_name": "nn.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "nn", + "noir_version": "0.23.0" + }, + { + "circuit_id": "4b389643-70d4-4fdb-8fe4-1dc11ca163f2", + "circuit_name": "is-equal", + "project_name": "is-equal", + "circuit_type": "noir", + "date_created": "2024-04-03T13:10:39.372Z", + "meta": {}, + "num_proofs": 21, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.154906S", + "compute_time_sec": 1.154906, + "compute_times": { + "total": 1.15491, + "clean_up": 0.0384, + "file_setup": 0.14133, + "nargo_checks": 0.45313, + "save_results": 0.00591, + "solidity_contract_generation": 0.51613 + }, + "file_size": 1665, + "queue_time": "P0DT00H00M00.550668S", + "queue_time_sec": 0.550668, + "uploaded_file_name": "is-equal.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "is_equal", + "noir_version": "0.23.0" + }, + { + "circuit_id": "043fa872-2b4f-400d-82da-6963519379be", + "circuit_name": "is-equal", + "project_name": "is-equal", + "circuit_type": "noir", + "date_created": "2024-04-03T13:07:20.025Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.138626S", + "compute_time_sec": 1.138626, + "compute_times": { + "total": 1.13863, + "clean_up": 0.07203, + "file_setup": 0.13056, + "nargo_checks": 0.42884, + "save_results": 0.00285, + "solidity_contract_generation": 0.50434 + }, + "file_size": 1665, + "queue_time": "P0DT00H00M00.525513S", + "queue_time_sec": 0.525513, + "uploaded_file_name": "is-equal.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "is_equal", + "noir_version": "0.23.0" + }, + { + "circuit_id": "a03db9cb-0677-4c69-b6e9-20aeb72bb481", + "circuit_name": "is-equal", + "project_name": "is-equal", + "circuit_type": "noir", + "date_created": "2024-04-03T13:02:58.013Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.144571S", + "compute_time_sec": 1.144571, + "compute_times": { + "total": 1.14457, + "clean_up": 0.02556, + "file_setup": 0.15006, + "nargo_checks": 0.43593, + "save_results": 0.00514, + "solidity_contract_generation": 0.52789 + }, + "file_size": 1662, + "queue_time": "P0DT00H00M01.324640S", + "queue_time_sec": 1.32464, + "uploaded_file_name": "is-equal.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "is_equal", + "noir_version": "0.23.0" + }, + { + "circuit_id": "1efe944f-8b6c-4d4f-bd7a-a9b449783e17", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-04-01T22:08:18.866Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.407891S", + "compute_time_sec": 1.407891, + "compute_times": { + "total": 1.40789, + "clean_up": 0.01565, + "file_setup": 0.14992, + "nargo_checks": 0.57023, + "save_results": 0.01407, + "solidity_contract_generation": 0.65802 + }, + "file_size": 1662, + "queue_time": "P0DT00H00M00.516286S", + "queue_time_sec": 0.516286, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "563aa13c-06cd-49ab-affa-8e9fc91cf805", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-04-01T22:07:04.976Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.502735S", + "compute_time_sec": 1.502735, + "compute_times": { + "total": 1.50274, + "clean_up": 0.01377, + "file_setup": 0.16013, + "nargo_checks": 0.60234, + "save_results": 0.01441, + "solidity_contract_generation": 0.71208 + }, + "file_size": 1659, + "queue_time": "P0DT00H00M00.495637S", + "queue_time_sec": 0.495637, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "dc828cc9-6e93-4f57-bc89-9302dc0c7831", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:53.307Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.300842S", + "compute_time_sec": 8.300842, + "compute_times": { + "total": 8.30084, + "clean_up": 0.01058, + "create_cpp": 0.04703, + "file_setup": 0.19224, + "compile_cpp": 4.42416, + "create_r1cs": 0.01782, + "save_results": 0.00369, + "get_r1cs_info": 0.00051, + "groth16_setup": 1.24968, + "export_verification_key": 1.1721, + "download_trusted_setup_file": 0.00155, + "solidity_contract_generation": 1.18149 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M42.153393S", + "queue_time_sec": 42.153393, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "818c3201-85e7-40db-b581-e8e91c0842ae", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:53.265Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.167072S", + "compute_time_sec": 8.167072, + "compute_times": { + "total": 8.16707, + "clean_up": 0.00852, + "create_cpp": 0.07302, + "file_setup": 0.17496, + "compile_cpp": 4.39795, + "create_r1cs": 0.01386, + "save_results": 0.00292, + "get_r1cs_info": 0.0004, + "groth16_setup": 1.1337, + "export_verification_key": 1.17324, + "download_trusted_setup_file": 0.00124, + "solidity_contract_generation": 1.18728 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M41.715218S", + "queue_time_sec": 41.715218, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ae524245-3952-4a4e-b2eb-4c7f0d7553d8", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:53.154Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.447077S", + "compute_time_sec": 9.447077, + "compute_times": { + "total": 9.44708, + "clean_up": 0.01099, + "create_cpp": 0.06845, + "file_setup": 0.15476, + "compile_cpp": 4.66326, + "create_r1cs": 0.02882, + "save_results": 0.00406, + "get_r1cs_info": 0.00075, + "groth16_setup": 1.60662, + "export_verification_key": 1.51103, + "download_trusted_setup_file": 0.00311, + "solidity_contract_generation": 1.39522 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M38.673517S", + "queue_time_sec": 38.673517, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "de1372ee-d93f-4c54-8161-1ace15109f53", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:53.115Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "browser-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.696964S", + "compute_time_sec": 8.696964, + "compute_times": { + "total": 8.69696, + "clean_up": 0.00921, + "create_cpp": 0.04555, + "file_setup": 0.12959, + "compile_cpp": 4.76746, + "create_r1cs": 0.01546, + "save_results": 0.00255, + "get_r1cs_info": 0.00039, + "groth16_setup": 1.27699, + "export_verification_key": 1.284, + "download_trusted_setup_file": 0.00131, + "solidity_contract_generation": 1.16446 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M33.648980S", + "queue_time_sec": 33.64898, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ac4adb36-753c-47e5-9c00-fb84a3a398f2", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:53.005Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.648787S", + "compute_time_sec": 9.648787, + "compute_times": { + "total": 9.64879, + "clean_up": 0.00972, + "create_cpp": 0.054, + "file_setup": 0.20357, + "compile_cpp": 4.5631, + "create_r1cs": 0.01429, + "save_results": 0.00769, + "get_r1cs_info": 0.00033, + "groth16_setup": 1.35239, + "export_verification_key": 1.30451, + "download_trusted_setup_file": 0.80159, + "solidity_contract_generation": 1.3376 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M32.157729S", + "queue_time_sec": 32.157729, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "aab290ef-753b-48a8-8685-2b85c7400b02", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:52.943Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.714657S", + "compute_time_sec": 9.714657, + "compute_times": { + "total": 9.71466, + "clean_up": 0.00968, + "create_cpp": 0.05344, + "file_setup": 0.20304, + "compile_cpp": 4.53522, + "create_r1cs": 0.01421, + "save_results": 0.00775, + "get_r1cs_info": 0.00049, + "groth16_setup": 1.38825, + "export_verification_key": 1.31224, + "download_trusted_setup_file": 0.92616, + "solidity_contract_generation": 1.26417 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M31.703950S", + "queue_time_sec": 31.70395, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5b7c2d94-cd15-4b99-8400-5522659fb357", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:51.603Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.650152S", + "compute_time_sec": 9.650152, + "compute_times": { + "total": 9.65015, + "clean_up": 0.03581, + "create_cpp": 0.0654, + "file_setup": 0.17452, + "compile_cpp": 4.68913, + "create_r1cs": 0.02965, + "save_results": 0.00473, + "get_r1cs_info": 0.00082, + "groth16_setup": 1.5979, + "export_verification_key": 1.51808, + "download_trusted_setup_file": 0.00314, + "solidity_contract_generation": 1.53097 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M29.957960S", + "queue_time_sec": 29.95796, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "a621537b-a8f7-418f-83d1-099c763b63a0", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:51.423Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.387811S", + "compute_time_sec": 9.387811, + "compute_times": { + "total": 9.38781, + "clean_up": 0.01084, + "create_cpp": 0.06225, + "file_setup": 0.17678, + "compile_cpp": 4.75973, + "create_r1cs": 0.02579, + "save_results": 0.00383, + "get_r1cs_info": 0.00061, + "groth16_setup": 1.45259, + "export_verification_key": 1.5012, + "download_trusted_setup_file": 0.00204, + "solidity_contract_generation": 1.39214 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M20.152216S", + "queue_time_sec": 20.152216, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "46351b4f-be5f-411b-9d39-16986d2197ee", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:51.418Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.261796S", + "compute_time_sec": 8.261796, + "compute_times": { + "total": 8.2618, + "clean_up": 0.01208, + "create_cpp": 0.04638, + "file_setup": 0.13565, + "compile_cpp": 4.5488, + "create_r1cs": 0.01433, + "save_results": 0.00263, + "get_r1cs_info": 0.00033, + "groth16_setup": 1.18363, + "export_verification_key": 1.15443, + "download_trusted_setup_file": 0.00121, + "solidity_contract_generation": 1.16231 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M26.539083S", + "queue_time_sec": 26.539083, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "24784240-c6cf-419a-8e6f-eaa9d9679858", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:51.414Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "sdk-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.311126S", + "compute_time_sec": 8.311126, + "compute_times": { + "total": 8.31113, + "clean_up": 0.01822, + "create_cpp": 0.04616, + "file_setup": 0.13746, + "compile_cpp": 4.52551, + "create_r1cs": 0.01461, + "save_results": 0.00244, + "get_r1cs_info": 0.00034, + "groth16_setup": 1.20083, + "export_verification_key": 1.20327, + "download_trusted_setup_file": 0.00122, + "solidity_contract_generation": 1.16107 + }, + "file_size": 236757, + "queue_time": "P0DT00H00M17.688147S", + "queue_time_sec": 17.688147, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "da7ec15e-2e70-453e-a8bb-88e16b084875", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:51.237Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.411685S", + "compute_time_sec": 9.411685, + "compute_times": { + "total": 9.41169, + "clean_up": 0.01036, + "create_cpp": 0.06139, + "file_setup": 0.15349, + "compile_cpp": 4.7262, + "create_r1cs": 0.03055, + "save_results": 0.00449, + "get_r1cs_info": 0.0009, + "groth16_setup": 1.54009, + "export_verification_key": 1.42588, + "download_trusted_setup_file": 0.00306, + "solidity_contract_generation": 1.45527 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M10.322269S", + "queue_time_sec": 10.322269, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6ab15295-2e90-4757-bb0d-764e0bbf90a2", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:51.228Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.037177S", + "compute_time_sec": 8.037177, + "compute_times": { + "total": 8.03718, + "clean_up": 0.01488, + "create_cpp": 0.04745, + "file_setup": 0.14306, + "compile_cpp": 4.31363, + "create_r1cs": 0.01476, + "save_results": 0.00337, + "get_r1cs_info": 0.00032, + "groth16_setup": 1.1845, + "export_verification_key": 1.13368, + "download_trusted_setup_file": 0.00127, + "solidity_contract_generation": 1.18025 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M09.283458S", + "queue_time_sec": 9.283458, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "7c416137-1c5a-48e7-8bb4-f8113af54daa", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:51.030Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.358749S", + "compute_time_sec": 9.358749, + "compute_times": { + "total": 9.35875, + "clean_up": 0.02555, + "create_cpp": 0.05862, + "file_setup": 0.16129, + "compile_cpp": 4.68529, + "create_r1cs": 0.02886, + "save_results": 0.01774, + "get_r1cs_info": 0.0008, + "groth16_setup": 1.41793, + "export_verification_key": 1.54632, + "download_trusted_setup_file": 0.00345, + "solidity_contract_generation": 1.41289 + }, + "file_size": 236757, + "queue_time": "P0DT00H00M00.562726S", + "queue_time_sec": 0.562726, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "4f59210a-945f-4178-a603-d2b085a504a0", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-31T16:28:51.007Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.296402S", + "compute_time_sec": 8.296402, + "compute_times": { + "total": 8.2964, + "clean_up": 0.03951, + "create_cpp": 0.0462, + "file_setup": 0.13575, + "compile_cpp": 4.46822, + "create_r1cs": 0.0149, + "save_results": 0.00835, + "get_r1cs_info": 0.00034, + "groth16_setup": 1.1834, + "export_verification_key": 1.19962, + "download_trusted_setup_file": 0.00136, + "solidity_contract_generation": 1.19875 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M00.556461S", + "queue_time_sec": 0.556461, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d48778bf-5fe5-44f5-9e0a-519a163cba07", + "circuit_name": "cc", + "project_name": "cc", + "circuit_type": "circom", + "date_created": "2024-03-25T16:38:07.269Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.869269S", + "compute_time_sec": 8.869269, + "compute_times": { + "total": 8.86927, + "clean_up": 0.20406, + "create_cpp": 0.07301, + "file_setup": 0.20897, + "compile_cpp": 5.00756, + "create_r1cs": 0.04301, + "save_results": 0.01312, + "get_r1cs_info": 0.00105, + "groth16_setup": 1.09317, + "export_verification_key": 1.10836, + "download_trusted_setup_file": 0.00352, + "solidity_contract_generation": 1.11345 + }, + "file_size": 1732314, + "queue_time": "P0DT00H00M00.879684S", + "queue_time_sec": 0.879684, + "uploaded_file_name": "cc.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "9cda3292-42db-4341-978c-2b8d6eafa12b", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:39.339Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.528368S", + "compute_time_sec": 9.528368, + "compute_times": { + "total": 9.52837, + "clean_up": 0.50335, + "create_cpp": 0.05438, + "file_setup": 0.23072, + "compile_cpp": 4.35643, + "create_r1cs": 0.01425, + "save_results": 0.0076, + "get_r1cs_info": 0.00036, + "groth16_setup": 1.17063, + "export_verification_key": 1.18302, + "download_trusted_setup_file": 0.82424, + "solidity_contract_generation": 1.18339 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M37.968571S", + "queue_time_sec": 37.968571, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c6747326-4b83-406e-8ffb-ad162ab52023", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:39.303Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.429740S", + "compute_time_sec": 9.42974, + "compute_times": { + "total": 9.42974, + "clean_up": 0.05123, + "create_cpp": 0.06946, + "file_setup": 0.16103, + "compile_cpp": 4.89268, + "create_r1cs": 0.02832, + "save_results": 0.00528, + "get_r1cs_info": 0.00083, + "groth16_setup": 1.43857, + "export_verification_key": 1.39906, + "download_trusted_setup_file": 0.00318, + "solidity_contract_generation": 1.38011 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M36.557482S", + "queue_time_sec": 36.557482, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "b7063547-4aeb-4cc3-a3e5-66d8573ab9c9", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:39.180Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.388982S", + "compute_time_sec": 9.388982, + "compute_times": { + "total": 9.38898, + "clean_up": 0.09387, + "create_cpp": 0.05952, + "file_setup": 0.1473, + "compile_cpp": 4.95608, + "create_r1cs": 0.02315, + "save_results": 0.00361, + "get_r1cs_info": 0.00067, + "groth16_setup": 1.67465, + "export_verification_key": 1.32213, + "download_trusted_setup_file": 0.00181, + "solidity_contract_generation": 1.10619 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M36.718529S", + "queue_time_sec": 36.718529, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "4c58913b-1cab-4f98-bf88-6351b66734bb", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:39.165Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.290796S", + "compute_time_sec": 9.290796, + "compute_times": { + "total": 9.2908, + "clean_up": 0.66644, + "create_cpp": 0.0687, + "file_setup": 0.21611, + "compile_cpp": 4.67702, + "create_r1cs": 0.02662, + "save_results": 0.0036, + "get_r1cs_info": 0.0007, + "groth16_setup": 1.19273, + "export_verification_key": 1.08746, + "download_trusted_setup_file": 0.0025, + "solidity_contract_generation": 1.34893 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M35.218856S", + "queue_time_sec": 35.218856, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "95769f2c-d435-460b-b420-d2b989bc5304", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:39.049Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "browser-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.848413S", + "compute_time_sec": 10.848413, + "compute_times": { + "total": 10.84841, + "clean_up": 1.23668, + "create_cpp": 0.06744, + "file_setup": 0.14282, + "compile_cpp": 4.81176, + "create_r1cs": 0.02894, + "save_results": 0.00523, + "get_r1cs_info": 0.00071, + "groth16_setup": 1.57736, + "export_verification_key": 1.53327, + "download_trusted_setup_file": 0.0031, + "solidity_contract_generation": 1.44109 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M30.248519S", + "queue_time_sec": 30.248519, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "158b8be9-704a-4d06-b50a-d6ddab770913", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:39.039Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.588162S", + "compute_time_sec": 9.588162, + "compute_times": { + "total": 9.58816, + "clean_up": 0.4741, + "create_cpp": 0.06118, + "file_setup": 0.21078, + "compile_cpp": 4.83092, + "create_r1cs": 0.02728, + "save_results": 0.00364, + "get_r1cs_info": 0.00085, + "groth16_setup": 1.27631, + "export_verification_key": 1.47157, + "download_trusted_setup_file": 0.0031, + "solidity_contract_generation": 1.22842 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M26.702068S", + "queue_time_sec": 26.702068, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ec4c4733-167d-437e-9bea-fb2f2bb508ae", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:36.906Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.362552S", + "compute_time_sec": 11.362552, + "compute_times": { + "total": 11.36255, + "clean_up": 0.83834, + "create_cpp": 0.07262, + "file_setup": 0.25701, + "compile_cpp": 5.00159, + "create_r1cs": 0.03197, + "save_results": 0.01616, + "get_r1cs_info": 0.0009, + "groth16_setup": 1.49515, + "export_verification_key": 1.42936, + "download_trusted_setup_file": 0.79597, + "solidity_contract_generation": 1.42347 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M26.992234S", + "queue_time_sec": 26.992234, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c5bccf8b-4c20-4e6b-8f9e-6c48a434fa0b", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:36.813Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.119539S", + "compute_time_sec": 10.119539, + "compute_times": { + "total": 10.11954, + "clean_up": 0.1179, + "create_cpp": 0.07316, + "file_setup": 0.27305, + "compile_cpp": 4.72684, + "create_r1cs": 0.02821, + "save_results": 0.01351, + "get_r1cs_info": 0.00055, + "groth16_setup": 1.16185, + "export_verification_key": 1.34382, + "download_trusted_setup_file": 0.91821, + "solidity_contract_generation": 1.46242 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M26.737447S", + "queue_time_sec": 26.737447, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5bf0ffc4-eda0-4449-a49d-10e8f9f2a003", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:36.768Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.520273S", + "compute_time_sec": 9.520273, + "compute_times": { + "total": 9.52027, + "clean_up": 0.09121, + "create_cpp": 0.06792, + "file_setup": 0.14105, + "compile_cpp": 4.59567, + "create_r1cs": 0.02713, + "save_results": 0.0045, + "get_r1cs_info": 0.0007, + "groth16_setup": 1.48077, + "export_verification_key": 1.49868, + "download_trusted_setup_file": 0.003, + "solidity_contract_generation": 1.60964 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M22.379911S", + "queue_time_sec": 22.379911, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "499cdc89-0c99-4c47-8278-aa0f5dfe31dc", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:36.657Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.049860S", + "compute_time_sec": 9.04986, + "compute_times": { + "total": 9.04986, + "clean_up": 0.81357, + "create_cpp": 0.05269, + "file_setup": 0.164, + "compile_cpp": 4.55828, + "create_r1cs": 0.04805, + "save_results": 0.003, + "get_r1cs_info": 0.00079, + "groth16_setup": 1.13113, + "export_verification_key": 1.10942, + "download_trusted_setup_file": 0.00309, + "solidity_contract_generation": 1.16584 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M19.174245S", + "queue_time_sec": 19.174245, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "95155187-fee5-4e68-8e3d-a17f811c6b3a", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:36.604Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.895088S", + "compute_time_sec": 10.895088, + "compute_times": { + "total": 10.89509, + "clean_up": 1.42058, + "create_cpp": 0.06192, + "file_setup": 0.14353, + "compile_cpp": 4.65622, + "create_r1cs": 0.02447, + "save_results": 0.00348, + "get_r1cs_info": 0.00036, + "groth16_setup": 1.6084, + "export_verification_key": 1.54193, + "download_trusted_setup_file": 0.00126, + "solidity_contract_generation": 1.43294 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M11.035836S", + "queue_time_sec": 11.035836, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "e4d79f08-c990-4b54-b46d-6bcc7cf284f4", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:36.506Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.385097S", + "compute_time_sec": 8.385097, + "compute_times": { + "total": 8.3851, + "clean_up": 0.01177, + "create_cpp": 0.06686, + "file_setup": 0.14812, + "compile_cpp": 4.72026, + "create_r1cs": 0.02541, + "save_results": 0.00412, + "get_r1cs_info": 0.00076, + "groth16_setup": 1.21829, + "export_verification_key": 1.09398, + "download_trusted_setup_file": 0.00306, + "solidity_contract_generation": 1.09247 + }, + "file_size": 236762, + "queue_time": "P0DT00H00M10.299071S", + "queue_time_sec": 10.299071, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5ac9a0cc-6aa1-4eb1-9c40-00c04da04617", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:36.330Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.115381S", + "compute_time_sec": 9.115381, + "compute_times": { + "total": 9.11538, + "clean_up": 0.22825, + "create_cpp": 0.06671, + "file_setup": 0.15571, + "compile_cpp": 5.13999, + "create_r1cs": 0.02866, + "save_results": 0.01306, + "get_r1cs_info": 0.00074, + "groth16_setup": 1.10345, + "export_verification_key": 1.1918, + "download_trusted_setup_file": 0.00331, + "solidity_contract_generation": 1.1837 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.655269S", + "queue_time_sec": 0.655269, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "e0cb8a84-a412-4108-9a8d-6cf18878507f", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-25T11:04:36.309Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "sdk-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.937672S", + "compute_time_sec": 9.937672, + "compute_times": { + "total": 9.93767, + "clean_up": 0.51989, + "create_cpp": 0.06167, + "file_setup": 0.16236, + "compile_cpp": 4.65773, + "create_r1cs": 0.0281, + "save_results": 0.01653, + "get_r1cs_info": 0.00085, + "groth16_setup": 1.56815, + "export_verification_key": 1.51501, + "download_trusted_setup_file": 0.00329, + "solidity_contract_generation": 1.40407 + }, + "file_size": 236762, + "queue_time": "P0DT00H00M00.555238S", + "queue_time_sec": 0.555238, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1eb7a1e2-a6c8-4701-9701-99a088645959", + "circuit_name": "hash-checker", + "project_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-03-23T21:12:35.246Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.689069S", + "compute_time_sec": 10.689069, + "compute_times": { + "total": 10.68907, + "clean_up": 0.09943, + "file_setup": 0.20059, + "create_r1cs": 0.38617, + "create_wasm": 1.14588, + "save_results": 0.01769, + "get_r1cs_info": 0.00119, + "groth16_setup": 4.83345, + "export_verification_key": 1.48649, + "download_trusted_setup_file": 1.02672, + "solidity_contract_generation": 1.49146 + }, + "file_size": 3354345, + "queue_time": "P0DT00H00M00.516109S", + "queue_time_sec": 0.516109, + "uploaded_file_name": "hash-checker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "e8de0926-bf82-44df-b8fc-7de8d9e52bf3", + "circuit_name": "pagerank", + "project_name": "pagerank", + "circuit_type": "noir", + "date_created": "2024-03-22T22:40:05.233Z", + "meta": {}, + "num_proofs": 2, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M33.892752S", + "compute_time_sec": 33.892752, + "compute_times": { + "total": 33.89275, + "clean_up": 0.09212, + "file_setup": 0.20141, + "nargo_checks": 12.85914, + "save_results": 0.00551, + "solidity_contract_generation": 20.73457 + }, + "file_size": 1900960, + "queue_time": "P0DT00H00M00.506670S", + "queue_time_sec": 0.50667, + "uploaded_file_name": "pagerank.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 344141, + "circuit_size": 349595, + "curve": "bn254", + "nargo_package_name": "pagerank", + "noir_version": "0.17.0" + }, + { + "circuit_id": "4ee2e4c3-50b5-4e8a-8366-8cf321bd1e6a", + "circuit_name": "pagerank", + "project_name": "pagerank", + "circuit_type": "noir", + "date_created": "2024-03-22T15:58:22.450Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "other-tag" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M33.867848S", + "compute_time_sec": 33.867848, + "compute_times": { + "total": 33.86785, + "clean_up": 0.10154, + "file_setup": 0.20042, + "nargo_checks": 9.97368, + "save_results": 0.01133, + "solidity_contract_generation": 23.58088 + }, + "file_size": 1900960, + "queue_time": "P0DT00H00M00.545991S", + "queue_time_sec": 0.545991, + "uploaded_file_name": "pagerank.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 344141, + "circuit_size": 349595, + "curve": "bn254", + "nargo_package_name": "pagerank", + "noir_version": "0.17.0" + }, + { + "circuit_id": "6d2b695b-5970-4a53-a11c-511122174f36", + "circuit_name": "pagerank", + "project_name": "pagerank", + "circuit_type": "noir", + "date_created": "2024-03-22T15:56:51.614Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M35.743538S", + "compute_time_sec": 35.743538, + "compute_times": { + "total": 35.74354, + "clean_up": 0.08147, + "file_setup": 0.21652, + "nargo_checks": 12.8313, + "save_results": 0.01402, + "solidity_contract_generation": 22.60023 + }, + "file_size": 1900961, + "queue_time": "P0DT00H00M00.674929S", + "queue_time_sec": 0.674929, + "uploaded_file_name": "pagerank.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 344141, + "circuit_size": 349595, + "curve": "bn254", + "nargo_package_name": "pagerank", + "noir_version": "0.17.0" + }, + { + "circuit_id": "8a0d1c87-1ce1-459e-9005-7933bfcde177", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:19:57.783Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "vtest10" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.132919S", + "compute_time_sec": 11.132919, + "compute_times": { + "total": 11.13292, + "clean_up": 1.23371, + "create_cpp": 0.06909, + "file_setup": 0.19449, + "compile_cpp": 4.95549, + "create_r1cs": 0.05109, + "save_results": 0.01738, + "get_r1cs_info": 0.00061, + "groth16_setup": 1.51633, + "export_verification_key": 1.50223, + "download_trusted_setup_file": 0.00184, + "solidity_contract_generation": 1.59066 + }, + "file_size": 1663475, + "queue_time": "P0DT00H00M00.596129S", + "queue_time_sec": 0.596129, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "e6075b2d-eb1e-46ea-8cbf-b27532759097", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:19:37.965Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.282399S", + "compute_time_sec": 10.282399, + "compute_times": { + "total": 10.2824, + "clean_up": 1.87361, + "create_cpp": 0.07134, + "file_setup": 0.2302, + "compile_cpp": 4.77509, + "create_r1cs": 0.0415, + "save_results": 0.01329, + "get_r1cs_info": 0.00087, + "groth16_setup": 1.12996, + "export_verification_key": 1.07128, + "download_trusted_setup_file": 0.00352, + "solidity_contract_generation": 1.07173 + }, + "file_size": 1663524, + "queue_time": "P0DT00H00M00.514095S", + "queue_time_sec": 0.514095, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "4bd523e4-c9a5-4d9d-b706-2a1a9cf1d6ee", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:19:13.234Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.624967S", + "compute_time_sec": 11.624967, + "compute_times": { + "total": 11.62497, + "clean_up": 2.11834, + "create_cpp": 0.06491, + "file_setup": 0.18741, + "compile_cpp": 4.73444, + "create_r1cs": 0.04151, + "save_results": 0.01716, + "get_r1cs_info": 0.0008, + "groth16_setup": 1.45856, + "export_verification_key": 1.49152, + "download_trusted_setup_file": 0.00326, + "solidity_contract_generation": 1.50706 + }, + "file_size": 1663507, + "queue_time": "P0DT00H00M00.542000S", + "queue_time_sec": 0.542, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "cd144ad5-0cde-4e1d-a7c1-f8fb96185d2f", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:18:58.957Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "main" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.413082S", + "compute_time_sec": 10.413082, + "compute_times": { + "total": 10.41308, + "clean_up": 1.90841, + "create_cpp": 0.07362, + "file_setup": 0.24132, + "compile_cpp": 4.75866, + "create_r1cs": 0.04767, + "save_results": 0.01329, + "get_r1cs_info": 0.00069, + "groth16_setup": 1.1514, + "export_verification_key": 1.13482, + "download_trusted_setup_file": 0.00333, + "solidity_contract_generation": 1.07988 + }, + "file_size": 1663484, + "queue_time": "P0DT00H00M00.520953S", + "queue_time_sec": 0.520953, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "6fe55a9f-843c-4b78-a48e-6100b96bf3c9", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:16:49.663Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "vtest8" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.607477S", + "compute_time_sec": 10.607477, + "compute_times": { + "total": 10.60748, + "clean_up": 1.19034, + "create_cpp": 0.08915, + "file_setup": 0.20011, + "compile_cpp": 4.65751, + "create_r1cs": 0.04206, + "save_results": 0.01559, + "get_r1cs_info": 0.00077, + "groth16_setup": 1.49838, + "export_verification_key": 1.41125, + "download_trusted_setup_file": 0.00326, + "solidity_contract_generation": 1.49906 + }, + "file_size": 1663488, + "queue_time": "P0DT00H00M00.583271S", + "queue_time_sec": 0.583271, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "45761777-c8c9-46c8-b6e6-d30f6e7b7e3a", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:16:04.003Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.678461S", + "compute_time_sec": 10.678461, + "compute_times": { + "total": 10.67846, + "clean_up": 1.83532, + "create_cpp": 0.08678, + "file_setup": 0.21239, + "compile_cpp": 4.86789, + "create_r1cs": 0.04306, + "save_results": 0.01501, + "get_r1cs_info": 0.00075, + "groth16_setup": 1.29062, + "export_verification_key": 1.23272, + "download_trusted_setup_file": 0.00329, + "solidity_contract_generation": 1.09064 + }, + "file_size": 1663527, + "queue_time": "P0DT00H00M00.522856S", + "queue_time_sec": 0.522856, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "8ad0b8de-ed95-4b02-a4cb-64943f4c3f6b", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:15:39.895Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "ews-update-workflow" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.709756S", + "compute_time_sec": 11.709756, + "compute_times": { + "total": 11.70976, + "clean_up": 2.10843, + "create_cpp": 0.0826, + "file_setup": 0.19283, + "compile_cpp": 4.76053, + "create_r1cs": 0.04417, + "save_results": 0.01569, + "get_r1cs_info": 0.00081, + "groth16_setup": 1.4405, + "export_verification_key": 1.38897, + "download_trusted_setup_file": 0.00335, + "solidity_contract_generation": 1.67188 + }, + "file_size": 1663512, + "queue_time": "P0DT00H00M00.551816S", + "queue_time_sec": 0.551816, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "48f8ae38-762e-4fa1-85d8-6857ed37cecc", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:10:25.929Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "vtest7" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.291259S", + "compute_time_sec": 10.291259, + "compute_times": { + "total": 10.29126, + "clean_up": 1.45173, + "create_cpp": 0.07496, + "file_setup": 0.24672, + "compile_cpp": 4.95293, + "create_r1cs": 0.04737, + "save_results": 0.01364, + "get_r1cs_info": 0.00075, + "groth16_setup": 1.21097, + "export_verification_key": 1.16064, + "download_trusted_setup_file": 0.00305, + "solidity_contract_generation": 1.12851 + }, + "file_size": 1663468, + "queue_time": "P0DT00H00M00.593364S", + "queue_time_sec": 0.593364, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "82457ba1-ef7d-49dd-a149-6a5cf7cd190c", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:10:24.598Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "ews-update-workflow" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.663766S", + "compute_time_sec": 10.663766, + "compute_times": { + "total": 10.66377, + "clean_up": 0.85062, + "create_cpp": 0.07549, + "file_setup": 0.21986, + "compile_cpp": 4.77566, + "create_r1cs": 0.04235, + "save_results": 0.01574, + "get_r1cs_info": 0.0008, + "groth16_setup": 1.60594, + "export_verification_key": 1.48908, + "download_trusted_setup_file": 0.00337, + "solidity_contract_generation": 1.58485 + }, + "file_size": 1663484, + "queue_time": "P0DT00H00M00.557984S", + "queue_time_sec": 0.557984, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "3742665d-19cd-4c98-a2cf-061840cb165d", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:09:46.247Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.973894S", + "compute_time_sec": 9.973894, + "compute_times": { + "total": 9.97389, + "clean_up": 1.34178, + "create_cpp": 0.08249, + "file_setup": 0.24827, + "compile_cpp": 4.67827, + "create_r1cs": 0.04315, + "save_results": 0.01336, + "get_r1cs_info": 0.00074, + "groth16_setup": 1.22841, + "export_verification_key": 1.13928, + "download_trusted_setup_file": 0.00366, + "solidity_contract_generation": 1.19448 + }, + "file_size": 1663527, + "queue_time": "P0DT00H00M00.491525S", + "queue_time_sec": 0.491525, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "5e1f9321-f9f7-4176-90ab-aec0c926cab6", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:07:19.230Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "vtest6" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.309174S", + "compute_time_sec": 11.309174, + "compute_times": { + "total": 11.30917, + "clean_up": 1.52893, + "create_cpp": 0.08016, + "file_setup": 0.20441, + "compile_cpp": 4.80143, + "create_r1cs": 0.04018, + "save_results": 0.01583, + "get_r1cs_info": 0.00079, + "groth16_setup": 1.4942, + "export_verification_key": 1.63114, + "download_trusted_setup_file": 0.0031, + "solidity_contract_generation": 1.50901 + }, + "file_size": 1663447, + "queue_time": "P0DT00H00M00.555224S", + "queue_time_sec": 0.555224, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "f05f8274-e9fc-42d7-b0f2-cf92bfbaf494", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:06:37.873Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.944963S", + "compute_time_sec": 9.944963, + "compute_times": { + "total": 9.94496, + "clean_up": 1.13119, + "create_cpp": 0.06774, + "file_setup": 0.19485, + "compile_cpp": 5.00766, + "create_r1cs": 0.04202, + "save_results": 0.01344, + "get_r1cs_info": 0.00076, + "groth16_setup": 1.22292, + "export_verification_key": 1.14135, + "download_trusted_setup_file": 0.00326, + "solidity_contract_generation": 1.11977 + }, + "file_size": 1663447, + "queue_time": "P0DT00H00M00.497610S", + "queue_time_sec": 0.49761, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "8cbddba4-24d1-4f91-af3f-a6a454d4e000", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:06:27.180Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "ews-update-workflow" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.244171S", + "compute_time_sec": 10.244171, + "compute_times": { + "total": 10.24417, + "clean_up": 0.62916, + "create_cpp": 0.08103, + "file_setup": 0.19514, + "compile_cpp": 4.78486, + "create_r1cs": 0.03511, + "save_results": 0.01427, + "get_r1cs_info": 0.00092, + "groth16_setup": 1.42218, + "export_verification_key": 1.5098, + "download_trusted_setup_file": 0.00331, + "solidity_contract_generation": 1.56839 + }, + "file_size": 1663452, + "queue_time": "P0DT00H00M00.552152S", + "queue_time_sec": 0.552152, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "3fc8f519-8a65-48c4-a223-cc645a46bbb1", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T13:04:39.571Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "ews-update-workflow" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.817861S", + "compute_time_sec": 9.817861, + "compute_times": { + "total": 9.81786, + "clean_up": 1.04035, + "create_cpp": 0.08147, + "file_setup": 0.22371, + "compile_cpp": 4.86953, + "create_r1cs": 0.0457, + "save_results": 0.01478, + "get_r1cs_info": 0.00074, + "groth16_setup": 1.15679, + "export_verification_key": 1.17304, + "download_trusted_setup_file": 0.00326, + "solidity_contract_generation": 1.20848 + }, + "file_size": 1663470, + "queue_time": "P0DT00H00M00.519248S", + "queue_time_sec": 0.519248, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "d3e7079e-86d4-46c0-b9d4-fc7d6ea2af30", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T12:52:56.310Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "vtest2" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.363183S", + "compute_time_sec": 11.363183, + "compute_times": { + "total": 11.36318, + "clean_up": 2.17182, + "create_cpp": 0.06633, + "file_setup": 0.20065, + "compile_cpp": 4.59783, + "create_r1cs": 0.04336, + "save_results": 0.01574, + "get_r1cs_info": 0.00078, + "groth16_setup": 1.45654, + "export_verification_key": 1.38337, + "download_trusted_setup_file": 0.00334, + "solidity_contract_generation": 1.42342 + }, + "file_size": 1663261, + "queue_time": "P0DT00H00M00.565082S", + "queue_time_sec": 0.565082, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "8a54a734-c9f0-4a5a-a4f2-19344194fc07", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T12:52:11.000Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "ews-update-workflow" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.537202S", + "compute_time_sec": 10.537202, + "compute_times": { + "total": 10.5372, + "clean_up": 1.85719, + "create_cpp": 0.0789, + "file_setup": 0.23887, + "compile_cpp": 4.80461, + "create_r1cs": 0.04037, + "save_results": 0.01363, + "get_r1cs_info": 0.00073, + "groth16_setup": 1.23675, + "export_verification_key": 1.15968, + "download_trusted_setup_file": 0.00342, + "solidity_contract_generation": 1.10305 + }, + "file_size": 1663300, + "queue_time": "P0DT00H00M00.537908S", + "queue_time_sec": 0.537908, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "fcbe9499-17a5-4c04-ba75-dc6a7b75dd7e", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T12:43:16.788Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "ews-update-workflow" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.631221S", + "compute_time_sec": 9.631221, + "compute_times": { + "total": 9.63122, + "clean_up": 0.07676, + "create_cpp": 0.07335, + "file_setup": 0.18891, + "compile_cpp": 4.81348, + "create_r1cs": 0.04154, + "save_results": 0.01386, + "get_r1cs_info": 0.00075, + "groth16_setup": 1.55637, + "export_verification_key": 1.45723, + "download_trusted_setup_file": 0.00332, + "solidity_contract_generation": 1.40565 + }, + "file_size": 1663276, + "queue_time": "P0DT00H00M00.613291S", + "queue_time_sec": 0.613291, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "b8e76828-7def-4e10-a4cb-6e69ae9f9718", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T12:31:36.230Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.451494S", + "compute_time_sec": 9.451494, + "compute_times": { + "total": 9.45149, + "clean_up": 0.22097, + "create_cpp": 0.09135, + "file_setup": 0.24026, + "compile_cpp": 5.17158, + "create_r1cs": 0.04161, + "save_results": 0.01256, + "get_r1cs_info": 0.00073, + "groth16_setup": 1.19608, + "export_verification_key": 1.27168, + "download_trusted_setup_file": 0.0033, + "solidity_contract_generation": 1.20138 + }, + "file_size": 1663158, + "queue_time": "P0DT00H00M00.561912S", + "queue_time_sec": 0.561912, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "ba8ff164-b5ca-424a-9cfb-ad4cf2b5164a", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T12:30:27.399Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "main" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.500431S", + "compute_time_sec": 11.500431, + "compute_times": { + "total": 11.50043, + "clean_up": 0.10156, + "create_cpp": 0.0804, + "file_setup": 0.20655, + "compile_cpp": 6.51566, + "create_r1cs": 0.03972, + "save_results": 0.00584, + "get_r1cs_info": 0.0004, + "groth16_setup": 1.28838, + "export_verification_key": 1.22863, + "download_trusted_setup_file": 0.92658, + "solidity_contract_generation": 1.1067 + }, + "file_size": 1663180, + "queue_time": "P0DT00H00M00.502725S", + "queue_time_sec": 0.502725, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "c8cadd69-dcf5-459a-9057-7735102bacbd", + "circuit_name": "my-circom-circuit", + "project_name": "my-circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-21T12:29:18.825Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "ews-test" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.545964S", + "compute_time_sec": 8.545964, + "compute_times": { + "total": 8.54596, + "clean_up": 0.21081, + "create_cpp": 0.07256, + "file_setup": 0.21206, + "compile_cpp": 4.67439, + "create_r1cs": 0.03481, + "save_results": 0.00442, + "get_r1cs_info": 0.00068, + "groth16_setup": 1.13559, + "export_verification_key": 1.10076, + "download_trusted_setup_file": 0.00318, + "solidity_contract_generation": 1.09672 + }, + "file_size": 1663170, + "queue_time": "P0DT00H00M00.522978S", + "queue_time_sec": 0.522978, + "uploaded_file_name": "my-circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "bf1d41bf-9d43-4347-b350-ff2e9d4598dc", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-20T14:17:26.961Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.948803S", + "compute_time_sec": 1.948803, + "compute_times": { + "total": 1.9569640904664993, + "clean_up": 0.685289766639471, + "file_setup": 0.04410131648182869, + "nargo_checks": 0.5339768528938293, + "save_results": 0.014465417712926865, + "solidity_contract_generation": 0.6785672567784786 + }, + "file_size": 723, + "queue_time": "P0DT00H00M00.501854S", + "queue_time_sec": 0.501854, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "c455ee25-7368-4599-a731-dbe2579022ab", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-03-18T21:32:47.427Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M23.142756S", + "compute_time_sec": 23.142756, + "compute_times": { + "total": 23.14932489488274, + "clean_up": 0.0760608296841383, + "file_setup": 0.06907258089631796, + "create_r1cs": 0.731669841799885, + "create_wasm": 1.4455262953415513, + "save_results": 0.013108087237924337, + "get_r1cs_info": 0.0038050850853323936, + "groth16_setup": 16.28522607823834, + "export_verification_key": 1.5782433529384434, + "download_trusted_setup_file": 1.3958227057009935, + "solidity_contract_generation": 1.5503304479643703 + }, + "file_size": 6197756, + "queue_time": "P0DT00H00M00.555306S", + "queue_time_sec": 0.555306, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 + }, + { + "circuit_id": "d0887df0-0512-4bb3-9471-b0f1afc80395", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:29.501Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.128193S", + "compute_time_sec": 9.128193, + "compute_times": { + "total": 9.136056929826736, + "clean_up": 0.010104283690452576, + "create_cpp": 0.058623410761356354, + "file_setup": 0.08122945949435234, + "compile_cpp": 4.518433306366205, + "create_r1cs": 0.022324994206428528, + "save_results": 0.004861015826463699, + "get_r1cs_info": 0.0006176978349685669, + "groth16_setup": 1.4849628806114197, + "export_verification_key": 1.4718086533248425, + "download_trusted_setup_file": 0.002116568386554718, + "solidity_contract_generation": 1.4806030206382275 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M38.842780S", + "queue_time_sec": 38.84278, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0eec7846-eef7-4b87-8e74-ad79a85f269c", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:29.471Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.104584S", + "compute_time_sec": 9.104584, + "compute_times": { + "total": 9.113569144159555, + "clean_up": 0.009724732488393784, + "create_cpp": 0.06440294161438942, + "file_setup": 0.038712695240974426, + "compile_cpp": 4.633099965751171, + "create_r1cs": 0.022221941500902176, + "save_results": 0.004806403070688248, + "get_r1cs_info": 0.0008087791502475739, + "groth16_setup": 1.3770955502986908, + "export_verification_key": 1.5450172796845436, + "download_trusted_setup_file": 0.0030752718448638916, + "solidity_contract_generation": 1.4137961380183697 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M38.135370S", + "queue_time_sec": 38.13537, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c71675ac-6776-48d6-9a3b-c86e0342dec1", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:29.383Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "browser-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.752837S", + "compute_time_sec": 9.752837, + "compute_times": { + "total": 9.759647552389652, + "clean_up": 0.009252616204321384, + "create_cpp": 0.05602269619703293, + "file_setup": 0.030205676797777414, + "compile_cpp": 4.655756023712456, + "create_r1cs": 0.030316375195980072, + "save_results": 0.02680853195488453, + "get_r1cs_info": 0.0006379019469022751, + "groth16_setup": 1.7292209956794977, + "export_verification_key": 1.66788710327819, + "download_trusted_setup_file": 0.002534266095608473, + "solidity_contract_generation": 1.5505848499014974 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M29.692094S", + "queue_time_sec": 29.692094, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "9c8dd510-1298-40ea-8902-20fe9f26cef9", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:29.369Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.776700S", + "compute_time_sec": 9.7767, + "compute_times": { + "total": 9.88929507508874, + "clean_up": 0.011690061539411545, + "create_cpp": 0.07547678053379059, + "file_setup": 0.14934508129954338, + "compile_cpp": 4.617635540664196, + "create_r1cs": 0.02931075543165207, + "save_results": 0.016873102635145187, + "get_r1cs_info": 0.0006890222430229187, + "groth16_setup": 1.3961253017187119, + "export_verification_key": 1.3712206594645977, + "download_trusted_setup_file": 0.7798134870827198, + "solidity_contract_generation": 1.438829779624939 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M28.402718S", + "queue_time_sec": 28.402718, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ea863ded-6443-4297-8d21-7fe40e47d32b", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:29.344Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.094433S", + "compute_time_sec": 9.094433, + "compute_times": { + "total": 9.10303309559822, + "clean_up": 0.010377351194620132, + "create_cpp": 0.05704041197896004, + "file_setup": 0.039752084761857986, + "compile_cpp": 4.5882804952561855, + "create_r1cs": 0.02706821635365486, + "save_results": 0.004041947424411774, + "get_r1cs_info": 0.0005764663219451904, + "groth16_setup": 1.4465988241136074, + "export_verification_key": 1.498193196952343, + "download_trusted_setup_file": 0.0020663291215896606, + "solidity_contract_generation": 1.4285377003252506 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M28.434767S", + "queue_time_sec": 28.434767, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "43f31087-1987-4e15-95dc-a608d5a82546", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:27.479Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.305665S", + "compute_time_sec": 10.305665, + "compute_times": { + "total": 10.413043993059546, + "clean_up": 0.01399040361866355, + "create_cpp": 0.07035982515662909, + "file_setup": 0.14063861686736345, + "compile_cpp": 4.546684664674103, + "create_r1cs": 0.028325339313596487, + "save_results": 0.010998486075550318, + "get_r1cs_info": 0.0005886605940759182, + "groth16_setup": 1.5871446118690073, + "export_verification_key": 1.634239657316357, + "download_trusted_setup_file": 0.8202190091833472, + "solidity_contract_generation": 1.5590812619775534 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M30.225044S", + "queue_time_sec": 30.225044, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6c4ba7bf-32c4-442c-b31c-31c896f9ae85", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:27.364Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.698314S", + "compute_time_sec": 9.698314, + "compute_times": { + "total": 9.705551906023175, + "clean_up": 0.021276818122714758, + "create_cpp": 0.05730678094550967, + "file_setup": 0.03649699268862605, + "compile_cpp": 4.708389349281788, + "create_r1cs": 0.030472892802208662, + "save_results": 0.004397203214466572, + "get_r1cs_info": 0.0008691279217600822, + "groth16_setup": 1.710043990984559, + "export_verification_key": 1.622103386092931, + "download_trusted_setup_file": 0.0034628822468221188, + "solidity_contract_generation": 1.510178068652749 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M21.255265S", + "queue_time_sec": 21.255265, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "81a36891-6809-4774-90cb-4211e9c5cbfd", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:27.324Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.210948S", + "compute_time_sec": 9.210948, + "compute_times": { + "total": 9.219696637243032, + "clean_up": 0.012776065617799759, + "create_cpp": 0.05699462443590164, + "file_setup": 0.03945335000753403, + "compile_cpp": 4.685839295387268, + "create_r1cs": 0.029251202940940857, + "save_results": 0.005126651376485825, + "get_r1cs_info": 0.0007720626890659332, + "groth16_setup": 1.4343496821820736, + "export_verification_key": 1.489438358694315, + "download_trusted_setup_file": 0.0030554644763469696, + "solidity_contract_generation": 1.4620327539741993 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M20.497085S", + "queue_time_sec": 20.497085, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "403dfb6b-d626-4a57-bb62-d3116348477c", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:27.319Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.175042S", + "compute_time_sec": 9.175042, + "compute_times": { + "total": 9.183534851763397, + "clean_up": 0.011141371913254261, + "create_cpp": 0.05671336781233549, + "file_setup": 0.03004106180742383, + "compile_cpp": 4.653775123413652, + "create_r1cs": 0.027213362976908684, + "save_results": 0.004314098972827196, + "get_r1cs_info": 0.0006822007708251476, + "groth16_setup": 1.4777755592949688, + "export_verification_key": 1.5040197470225394, + "download_trusted_setup_file": 0.0029390938580036163, + "solidity_contract_generation": 1.4130500159226358 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M11.398720S", + "queue_time_sec": 11.39872, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "bc80e117-9b6a-4488-91e0-cf173ff86ba7", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:27.229Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "sdk-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.311010S", + "compute_time_sec": 9.31101, + "compute_times": { + "total": 9.319812651723623, + "clean_up": 0.011324014514684677, + "create_cpp": 0.057756099849939346, + "file_setup": 0.0404469259083271, + "compile_cpp": 4.731784574687481, + "create_r1cs": 0.028865016996860504, + "save_results": 0.004909351468086243, + "get_r1cs_info": 0.0007922351360321045, + "groth16_setup": 1.4483194835484028, + "export_verification_key": 1.477173574268818, + "download_trusted_setup_file": 0.002990592271089554, + "solidity_contract_generation": 1.51463782787323 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M10.508655S", + "queue_time_sec": 10.508655, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "bbc2209e-f403-4206-8b25-5095c2f4e840", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:27.143Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.211413S", + "compute_time_sec": 9.211413, + "compute_times": { + "total": 9.220092054456472, + "clean_up": 0.012299258261919022, + "create_cpp": 0.0659804418683052, + "file_setup": 0.04178190976381302, + "compile_cpp": 4.720022294670343, + "create_r1cs": 0.02683413401246071, + "save_results": 0.01673327013850212, + "get_r1cs_info": 0.0007830262184143066, + "groth16_setup": 1.4412461444735527, + "export_verification_key": 1.4419135004281998, + "download_trusted_setup_file": 0.003035079687833786, + "solidity_contract_generation": 1.4488594830036163 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.559872S", + "queue_time_sec": 0.559872, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d6e87b0c-811c-4b49-9b0d-cc9c89369c60", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-18T14:17:27.139Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.281904S", + "compute_time_sec": 10.281904, + "compute_times": { + "total": 10.289068803191185, + "clean_up": 0.007799143902957439, + "create_cpp": 0.06638590386137366, + "file_setup": 0.02974561508744955, + "compile_cpp": 4.892398490104824, + "create_r1cs": 0.029133875854313374, + "save_results": 0.011243985034525394, + "get_r1cs_info": 0.0008647660724818707, + "groth16_setup": 1.3819010220468044, + "export_verification_key": 1.4853795138187706, + "download_trusted_setup_file": 0.953129094094038, + "solidity_contract_generation": 1.4306797003373504 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M00.568215S", + "queue_time_sec": 0.568215, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "a681cc07-6758-40b3-9705-756630baad6d", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-18T14:12:43.860Z", + "meta": {}, + "num_proofs": 2, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.335539S", + "compute_time_sec": 1.335539, + "compute_times": { + "total": 1.3448769599199295, + "clean_up": 0.06142912805080414, + "file_setup": 0.0445174016058445, + "nargo_checks": 0.577319111675024, + "save_results": 0.012926913797855377, + "solidity_contract_generation": 0.6480052843689919 + }, + "file_size": 716, + "queue_time": "P0DT00H00M00.517932S", + "queue_time_sec": 0.517932, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "d45df125-14b4-4e04-9853-ee74a1fab7fe", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-16T00:06:24.884Z", + "meta": {}, + "num_proofs": 2, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M05.332981S", + "compute_time_sec": 5.332981, + "compute_times": { + "total": 5.338791850022972, + "clean_up": 4.3510633278638124, + "file_setup": 0.02657062280923128, + "nargo_checks": 0.46227254904806614, + "save_results": 0.004865624010562897, + "solidity_contract_generation": 0.4935983009636402 + }, + "file_size": 1285, + "queue_time": "P0DT00H00M00.937229S", + "queue_time_sec": 0.937229, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "b0c4665a-01be-418d-bcf0-28b824faf251", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-16T00:05:36.787Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "main" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M03.394965S", + "compute_time_sec": 3.394965, + "compute_times": { + "total": 3.40187019854784, + "clean_up": 2.1594989113509655, + "file_setup": 0.03134112060070038, + "nargo_checks": 0.5169066376984119, + "save_results": 0.013889234513044357, + "solidity_contract_generation": 0.6795457378029823 + }, + "file_size": 1285, + "queue_time": "P0DT00H00M00.568996S", + "queue_time_sec": 0.568996, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "2537d1d6-0e58-40fe-b377-8cd41a2bb190", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-16T00:04:36.869Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "ews-add-bug-then-fix-it" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.998621S", + "compute_time_sec": 1.998621, + "compute_times": { + "total": 2.0043763401918113, + "clean_up": 0.9484327929094434, + "file_setup": 0.029500093776732683, + "nargo_checks": 0.4901977120898664, + "save_results": 0.004730392247438431, + "solidity_contract_generation": 0.531058550812304 + }, + "file_size": 1286, + "queue_time": "P0DT00H00M01.018264S", + "queue_time_sec": 1.018264, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "be0acedc-9451-4c9d-a19b-243d4a275b53", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-16T00:03:14.596Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Failed", + "tags": [ + "ews-add-bug-then-fix-it" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.124574S", + "compute_time_sec": 2.124574, + "compute_times": { + "total": 0.5014128349721432, + "file_setup": 0.041081301867961884, + "nargo_checks": 0.4596608690917492 + }, + "file_size": 1308, + "queue_time": "P0DT00H00M00.602582S", + "queue_time_sec": 0.602582, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: nargo-v0.23.0 info stdout: stderr: warning: unused variable Y\n ┌─ /workspace/circuits/be0acedc-9451-4c9d-a19b-243d4a275b53_1710547395198915/code/src/main.nr:2:19\n │\n2 │ fn main(X: Field, Y: pub Field) {\n │ - unused variable \n │\n\nerror: cannot find `Z` in this scope \n ┌─ /workspace/circuits/be0acedc-9451-4c9d-a19b-243d4a275b53_1710547395198915/code/src/main.nr:5:17\n │\n5 │ assert(X == Z);\n │ - not found in this scope\n │\n\nAborting due to 1 previous error\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.23.0" + }, + { + "circuit_id": "cf27d62c-d4ae-4bd5-9f83-1d77b726dea0", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-15T23:53:56.215Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "ews-add-bug-then-fix-it" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M05.887696S", + "compute_time_sec": 5.887696, + "compute_times": { + "total": 5.893388924188912, + "clean_up": 4.886199481319636, + "file_setup": 0.042362162843346596, + "nargo_checks": 0.4607020281255245, + "save_results": 0.004635232035070658, + "solidity_contract_generation": 0.49903516471385956 + }, + "file_size": 1292, + "queue_time": "P0DT00H00M01.034311S", + "queue_time_sec": 1.034311, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "41f9e8a6-ab84-456a-941d-92742f48abef", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-15T23:52:40.302Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Failed", + "tags": [ + "ews-add-bug-then-fix-it" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.625961S", + "compute_time_sec": 2.625961, + "compute_times": { + "total": 0.5365241914987564, + "file_setup": 0.0927840918302536, + "nargo_checks": 0.4430789351463318 + }, + "file_size": 1307, + "queue_time": "P0DT00H00M00.574164S", + "queue_time_sec": 0.574164, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: nargo-v0.23.0 info stdout: stderr: warning: unused variable Y\n ┌─ /workspace/circuits/41f9e8a6-ab84-456a-941d-92742f48abef_1710546760875958/code/src/main.nr:2:19\n │\n2 │ fn main(X: Field, Y: pub Field) {\n │ - unused variable \n │\n\nerror: cannot find `Z` in this scope \n ┌─ /workspace/circuits/41f9e8a6-ab84-456a-941d-92742f48abef_1710546760875958/code/src/main.nr:5:17\n │\n5 │ assert(X == Z);\n │ - not found in this scope\n │\n\nAborting due to 1 previous error\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.23.0" + }, + { + "circuit_id": "50397057-37a4-4330-b0f4-f14e72287137", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-15T23:47:28.928Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "ews-add-bug-then-fix-it" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.955221S", + "compute_time_sec": 1.955221, + "compute_times": { + "total": 1.9604994058609009, + "clean_up": 0.9643332809209824, + "file_setup": 0.0379217891022563, + "nargo_checks": 0.45019666012376547, + "save_results": 0.004803900141268969, + "solidity_contract_generation": 0.5028517027385533 + }, + "file_size": 1294, + "queue_time": "P0DT00H00M00.947069S", + "queue_time_sec": 0.947069, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "89b0e875-9b39-4bde-8b6b-120ff97642ff", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-15T23:46:00.949Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Failed", + "tags": [ + "ews-add-bug-then-fix-it" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.587073S", + "compute_time_sec": 2.587073, + "compute_times": { + "total": 0.8602200485765934, + "file_setup": 0.3412007801234722, + "nargo_checks": 0.5182558670639992 + }, + "file_size": 1298, + "queue_time": "P0DT00H00M00.614770S", + "queue_time_sec": 0.61477, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: nargo-v0.23.0 info stdout: stderr: warning: unused variable Y\n ┌─ /workspace/circuits/89b0e875-9b39-4bde-8b6b-120ff97642ff_1710546361563997/code/src/main.nr:2:19\n │\n2 │ fn main(X: Field, Y: pub Field) {\n │ - unused variable \n │\n\nerror: cannot find `Z` in this scope \n ┌─ /workspace/circuits/89b0e875-9b39-4bde-8b6b-120ff97642ff_1710546361563997/code/src/main.nr:5:17\n │\n5 │ assert(X == Z);\n │ - not found in this scope\n │\n\nAborting due to 1 previous error\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.23.0" + }, + { + "circuit_id": "364a0f03-986c-4d00-8630-43b62e2cf6e5", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-15T23:37:49.839Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "ews-add-bug-then-fix" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.579560S", + "compute_time_sec": 2.57956, + "compute_times": { + "total": 2.585219926200807, + "clean_up": 1.5475464779883623, + "file_setup": 0.02537884982302785, + "nargo_checks": 0.48431322211399674, + "save_results": 0.004537166096270084, + "solidity_contract_generation": 0.5230312100611627 + }, + "file_size": 1295, + "queue_time": "P0DT00H00M00.942253S", + "queue_time_sec": 0.942253, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "95798f52-f0f7-41e7-a4d8-9788c4f30339", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-15T23:32:37.213Z", + "meta": {}, + "num_proofs": 3, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "ews-add-bug-then-fix" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.515330S", + "compute_time_sec": 1.51533, + "compute_times": { + "total": 1.5228322558104992, + "clean_up": 0.2920541651546955, + "file_setup": 0.037235140800476074, + "nargo_checks": 0.5503607206046581, + "save_results": 0.014032609760761261, + "solidity_contract_generation": 0.6282044015824795 + }, + "file_size": 1287, + "queue_time": "P0DT00H00M00.600073S", + "queue_time_sec": 0.600073, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "048618bd-1267-4246-9ab3-5a21100068b7", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-15T23:27:50.424Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "ews-add-bug-then-fix" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M03.183149S", + "compute_time_sec": 3.183149, + "compute_times": { + "total": 3.188678659964353, + "clean_up": 2.1827749628573656, + "file_setup": 0.027360782958567142, + "nargo_checks": 0.45093528367578983, + "save_results": 0.004683893173933029, + "solidity_contract_generation": 0.5225234641693532 + }, + "file_size": 1288, + "queue_time": "P0DT00H00M00.950660S", + "queue_time_sec": 0.95066, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "404ddf1f-b808-4064-b182-d5d688c9bba4", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-15T23:26:34.095Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Failed", + "tags": [ + "ews-add-bug-then-fix" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.360792S", + "compute_time_sec": 1.360792, + "compute_times": { + "total": 0.4829430617392063, + "file_setup": 0.05813189595937729, + "nargo_checks": 0.4238644689321518 + }, + "file_size": 1304, + "queue_time": "P0DT00H00M00.614997S", + "queue_time_sec": 0.614997, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: nargo-v0.23.0 info stdout: stderr: warning: unused variable Y\n ┌─ /workspace/circuits/404ddf1f-b808-4064-b182-d5d688c9bba4_1710545194710088/code/src/main.nr:2:19\n │\n2 │ fn main(X: Field, Y: pub Field) {\n │ - unused variable \n │\n\nerror: cannot find `Z` in this scope \n ┌─ /workspace/circuits/404ddf1f-b808-4064-b182-d5d688c9bba4_1710545194710088/code/src/main.nr:5:17\n │\n5 │ assert(X == Z);\n │ - not found in this scope\n │\n\nAborting due to 1 previous error\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.23.0" + }, + { + "circuit_id": "f9273258-c4cb-480c-b836-fcbb845c0229", + "circuit_name": "my-noir-circuit", + "project_name": "my-noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-15T22:31:22.227Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Failed", + "tags": [ + "ews-add-bug-and-fix" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.531222S", + "compute_time_sec": 0.531222, + "compute_times": { + "total": 0.5279519706964493, + "file_setup": 0.03068944811820984, + "nargo_checks": 0.49658747017383575 + }, + "file_size": 1311, + "queue_time": "P0DT00H00M00.561600S", + "queue_time_sec": 0.5616, + "uploaded_file_name": "my-noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: nargo-v0.23.0 info stdout: stderr: warning: unused variable Y\n ┌─ /workspace/circuits/f9273258-c4cb-480c-b836-fcbb845c0229_1710541882788055/code/src/main.nr:2:19\n │\n2 │ fn main(X: Field, Y: pub Field) {\n │ - unused variable \n │\n\nerror: cannot find `Z` in this scope \n ┌─ /workspace/circuits/f9273258-c4cb-480c-b836-fcbb845c0229_1710541882788055/code/src/main.nr:5:17\n │\n5 │ assert(X == Z); // This is a bug!\n │ - not found in this scope\n │\n\nAborting due to 1 previous error\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.23.0" + }, + { + "circuit_id": "fd71e034-52b2-4568-b64f-9f340c3e8386", + "circuit_name": "is-equal", + "project_name": "is-equal", + "circuit_type": "noir", + "date_created": "2024-03-15T16:26:22.084Z", + "meta": {}, + "num_proofs": 25, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.970518S", + "compute_time_sec": 0.970518, + "compute_times": { + "total": 0.9767654938623309, + "clean_up": 0.010434275958687067, + "file_setup": 0.02777653792873025, + "nargo_checks": 0.4504653010517359, + "save_results": 0.004922701045870781, + "solidity_contract_generation": 0.48277214681729674 + }, + "file_size": 724, + "queue_time": "P0DT00H00M00.992179S", + "queue_time_sec": 0.992179, + "uploaded_file_name": "is-equal.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "is_equal", + "noir_version": "0.23.0" + }, + { + "circuit_id": "8e6af772-b336-4a05-9a33-8dc31db50676", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-14T20:36:55.486Z", + "meta": {}, + "num_proofs": 3, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.523784S", + "compute_time_sec": 8.523784, + "compute_times": { + "total": 8.529641860164702, + "clean_up": 0.13199715735390782, + "create_cpp": 0.0558135979808867, + "file_setup": 0.07662083394825459, + "compile_cpp": 4.545625839848071, + "create_r1cs": 0.026279885321855545, + "save_results": 0.005452707875519991, + "get_r1cs_info": 0.000342722050845623, + "groth16_setup": 1.2112812278792262, + "export_verification_key": 1.2650951412506402, + "download_trusted_setup_file": 0.0013319998979568481, + "solidity_contract_generation": 1.209401108790189 + }, + "file_size": 1662699, + "queue_time": "P0DT00H00M00.916345S", + "queue_time_sec": 0.916345, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "b9507085-4088-4a4d-b33c-21bf3dd7bff7", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.939Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.691729S", + "compute_time_sec": 9.691729, + "compute_times": { + "total": 9.698325637727976, + "clean_up": 0.046641225926578045, + "create_cpp": 0.04586349707096815, + "file_setup": 0.03466500248759985, + "compile_cpp": 4.734695943072438, + "create_r1cs": 0.01605131570249796, + "save_results": 0.008689278736710548, + "get_r1cs_info": 0.0004518600180745125, + "groth16_setup": 1.6800644360482693, + "export_verification_key": 1.6780370585620403, + "download_trusted_setup_file": 0.0014321627095341682, + "solidity_contract_generation": 1.4514362132176757 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M00.474052S", + "queue_time_sec": 0.474052, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "e74ff355-1a0d-4e6d-9f92-7b753d731f59", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.920Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.603959S", + "compute_time_sec": 8.603959, + "compute_times": { + "total": 8.611909189727157, + "clean_up": 0.05220539681613445, + "create_cpp": 0.05067062610760331, + "file_setup": 0.038000084925442934, + "compile_cpp": 4.637983243912458, + "create_r1cs": 0.014208190143108368, + "save_results": 0.0024204719811677933, + "get_r1cs_info": 0.0003376118838787079, + "groth16_setup": 1.2754370658658445, + "export_verification_key": 1.2892165738157928, + "download_trusted_setup_file": 0.001250759232789278, + "solidity_contract_generation": 1.2496181591413915 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M09.288692S", + "queue_time_sec": 9.288692, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "8fcd4fda-c14c-46ce-b6a8-8a2e81bf09d2", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.828Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.905165S", + "compute_time_sec": 9.905165, + "compute_times": { + "total": 9.918926574289799, + "clean_up": 0.05230675730854273, + "create_cpp": 0.045606729574501514, + "file_setup": 0.02679374162107706, + "compile_cpp": 4.953503333963454, + "create_r1cs": 0.015227718278765678, + "save_results": 0.008131230250000954, + "get_r1cs_info": 0.00043175462633371353, + "groth16_setup": 1.7147084949538112, + "export_verification_key": 1.678258053958416, + "download_trusted_setup_file": 0.0014104470610618591, + "solidity_contract_generation": 1.4150088308379054 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M00.485820S", + "queue_time_sec": 0.48582, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5d32cb58-d551-44f2-a7ba-f3f1042a8722", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.762Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.879936S", + "compute_time_sec": 9.879936, + "compute_times": { + "total": 9.886854749172926, + "clean_up": 0.037875108420848846, + "create_cpp": 0.045085612684488297, + "file_setup": 0.02763216197490692, + "compile_cpp": 4.9910760167986155, + "create_r1cs": 0.015627074986696243, + "save_results": 0.008492609485983849, + "get_r1cs_info": 0.00048466306179761887, + "groth16_setup": 1.714037835597992, + "export_verification_key": 1.673197460360825, + "download_trusted_setup_file": 0.0012773266062140465, + "solidity_contract_generation": 1.3717909315600991 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M00.485382S", + "queue_time_sec": 0.485382, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f680f94f-962d-40ff-af4e-f93157ceea48", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:31.746Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "browser-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.345263S", + "compute_time_sec": 9.345263, + "compute_times": { + "total": 9.351605591364205, + "clean_up": 0.05285029113292694, + "create_cpp": 0.045495557598769665, + "file_setup": 0.02658266667276621, + "compile_cpp": 4.7376435389742255, + "create_r1cs": 0.014407068490982056, + "save_results": 0.009819619357585907, + "get_r1cs_info": 0.0004047444090247154, + "groth16_setup": 1.5581415686756372, + "export_verification_key": 1.4666384868323803, + "download_trusted_setup_file": 0.0015744948759675026, + "solidity_contract_generation": 1.4376487005501986 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M00.477716S", + "queue_time_sec": 0.477716, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "e9f39a75-0926-4bd4-9a87-323795b468ff", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.659Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "sdk-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.375539S", + "compute_time_sec": 9.375539, + "compute_times": { + "total": 9.381464813835919, + "clean_up": 0.05025594122707844, + "create_cpp": 0.04334672819823027, + "file_setup": 0.025018360465765, + "compile_cpp": 4.648743998259306, + "create_r1cs": 0.014843899756669998, + "save_results": 0.00782844889909029, + "get_r1cs_info": 0.00040088966488838196, + "groth16_setup": 1.3209671378135681, + "export_verification_key": 1.6962075987830758, + "download_trusted_setup_file": 0.001315578818321228, + "solidity_contract_generation": 1.572251359000802 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M00.522243S", + "queue_time_sec": 0.522243, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "15eeccf5-0331-47eb-bbb8-85de2cc64967", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.618Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.307601S", + "compute_time_sec": 9.307601, + "compute_times": { + "total": 9.314248332753778, + "clean_up": 0.02926310896873474, + "create_cpp": 0.04471412394195795, + "file_setup": 0.03804492764174938, + "compile_cpp": 4.608692822046578, + "create_r1cs": 0.014758244156837463, + "save_results": 0.008313399739563465, + "get_r1cs_info": 0.0004539685323834419, + "groth16_setup": 1.3243383038789034, + "export_verification_key": 1.6189338900148869, + "download_trusted_setup_file": 0.001455250196158886, + "solidity_contract_generation": 1.6248986180871725 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.472485S", + "queue_time_sec": 0.472485, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6621575b-2045-4338-8de5-8ab673bf7717", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.569Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.145998S", + "compute_time_sec": 9.145998, + "compute_times": { + "total": 9.15299117192626, + "clean_up": 0.029666390269994736, + "create_cpp": 0.0658210851252079, + "file_setup": 0.03178653493523598, + "compile_cpp": 4.756836257874966, + "create_r1cs": 0.026396218687295914, + "save_results": 0.01597248762845993, + "get_r1cs_info": 0.0003932081162929535, + "groth16_setup": 1.4214057549834251, + "export_verification_key": 1.4400159232318401, + "download_trusted_setup_file": 0.0015518292784690857, + "solidity_contract_generation": 1.3624810725450516 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.685611S", + "queue_time_sec": 0.685611, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "7e823c8e-e303-426c-b6d6-9edf3a3d754e", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.496Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.573115S", + "compute_time_sec": 8.573115, + "compute_times": { + "total": 8.579251876100898, + "clean_up": 0.03129182104021311, + "create_cpp": 0.04595769103616476, + "file_setup": 0.030209324788302183, + "compile_cpp": 4.6374000972136855, + "create_r1cs": 0.04609727067872882, + "save_results": 0.0079621197655797, + "get_r1cs_info": 0.0005209962837398052, + "groth16_setup": 1.1605738401412964, + "export_verification_key": 1.2923613898456097, + "download_trusted_setup_file": 0.001424906775355339, + "solidity_contract_generation": 1.3250793442130089 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M00.796402S", + "queue_time_sec": 0.796402, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "70e517c5-811f-4fd6-9f61-e807eb8a9d89", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.459Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M15.009296S", + "compute_time_sec": 15.009296, + "compute_times": { + "total": 15.102583220694214, + "clean_up": 0.04279625462368131, + "create_cpp": 0.07173184677958488, + "file_setup": 0.12286364380270243, + "compile_cpp": 4.595611970406026, + "create_r1cs": 0.014224277809262276, + "save_results": 0.0057679093442857265, + "get_r1cs_info": 0.00045422976836562157, + "groth16_setup": 1.2457834123633802, + "export_verification_key": 1.1942963958717883, + "download_trusted_setup_file": 6.611268437001854, + "solidity_contract_generation": 1.197091506794095 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.498274S", + "queue_time_sec": 0.498274, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f3089b5b-27f5-4dfd-918a-4480596ccde2", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.442Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.789405S", + "compute_time_sec": 10.789405, + "compute_times": { + "total": 10.882488801609725, + "clean_up": 0.04104336490854621, + "create_cpp": 0.052224196027964354, + "file_setup": 0.11650297930464149, + "compile_cpp": 4.446984312962741, + "create_r1cs": 0.01346581382676959, + "save_results": 0.006408482789993286, + "get_r1cs_info": 0.0003145672380924225, + "groth16_setup": 1.3689304389990866, + "export_verification_key": 1.3372940109111369, + "download_trusted_setup_file": 2.2383047258481383, + "solidity_contract_generation": 1.2602891041897237 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M00.512784S", + "queue_time_sec": 0.512784, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f7eb912b-520d-49ef-801d-4b3a161c81b7", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:02:30.323Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.101823S", + "compute_time_sec": 11.101823, + "compute_times": { + "total": 11.179332848172635, + "clean_up": 0.0485866479575634, + "create_cpp": 0.052952506113797426, + "file_setup": 0.09853811888024211, + "compile_cpp": 4.571448627859354, + "create_r1cs": 0.014488603919744492, + "save_results": 0.005894129164516926, + "get_r1cs_info": 0.0004602782428264618, + "groth16_setup": 1.4362294389866292, + "export_verification_key": 1.3798753838054836, + "download_trusted_setup_file": 2.1441893419250846, + "solidity_contract_generation": 1.4259786889888346 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.609665S", + "queue_time_sec": 0.609665, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c4f88a86-d9ec-4b91-bd80-cfb31b7a5bfc", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:45.642Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "browser-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.929838S", + "compute_time_sec": 10.929838, + "compute_times": { + "total": 11.007619581185281, + "clean_up": 0.051205127499997616, + "create_cpp": 0.05483011808246374, + "file_setup": 0.10308713093400002, + "compile_cpp": 4.6461376613006, + "create_r1cs": 0.014528287574648857, + "save_results": 0.008079186081886292, + "get_r1cs_info": 0.0003790585324168205, + "groth16_setup": 1.4076873622834682, + "export_verification_key": 1.4883546605706215, + "download_trusted_setup_file": 1.7322950633242726, + "solidity_contract_generation": 1.5002469010651112 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M00.481129S", + "queue_time_sec": 0.481129, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "7cca8edc-50d3-47a7-8e3a-74ca373b3cd4", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.896Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.231365S", + "compute_time_sec": 11.231365, + "compute_times": { + "total": 11.307692172005773, + "clean_up": 0.008774058893322945, + "create_cpp": 0.053523180074989796, + "file_setup": 0.09832879714667797, + "compile_cpp": 4.598241847008467, + "create_r1cs": 0.014149329625070095, + "save_results": 0.007395447231829166, + "get_r1cs_info": 0.0003755558282136917, + "groth16_setup": 1.5397319523617625, + "export_verification_key": 1.63625568151474, + "download_trusted_setup_file": 1.8067116104066372, + "solidity_contract_generation": 1.543387576006353 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.476676S", + "queue_time_sec": 0.476676, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "b8e1fce0-8f61-425f-bcb8-934e7d40a7fe", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.868Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.883477S", + "compute_time_sec": 10.883477, + "compute_times": { + "total": 10.96161946002394, + "clean_up": 0.008177496492862701, + "create_cpp": 0.05455693602561951, + "file_setup": 0.09822729509323835, + "compile_cpp": 5.32946053519845, + "create_r1cs": 0.023223165422677994, + "save_results": 0.007872683927416801, + "get_r1cs_info": 0.0007433714345097542, + "groth16_setup": 1.232159056700766, + "export_verification_key": 1.1852782787755132, + "download_trusted_setup_file": 1.8125058794394135, + "solidity_contract_generation": 1.2086354764178395 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M05.594399S", + "queue_time_sec": 5.594399, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f687f41b-05ef-4b71-859f-89c235df7f85", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.751Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.305050S", + "compute_time_sec": 11.30505, + "compute_times": { + "total": 11.381858820095658, + "clean_up": 0.006945925764739513, + "create_cpp": 0.0647741137072444, + "file_setup": 0.10372947435826063, + "compile_cpp": 4.63662054669112, + "create_r1cs": 0.014084351249039173, + "save_results": 0.006675968877971172, + "get_r1cs_info": 0.0004263361915946007, + "groth16_setup": 1.5637168493121862, + "export_verification_key": 1.5961499894037843, + "download_trusted_setup_file": 1.842420045286417, + "solidity_contract_generation": 1.5456946399062872 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.503683S", + "queue_time_sec": 0.503683, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "66b82507-33a9-4ad4-bc6b-d25ca1e81640", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.750Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.268466S", + "compute_time_sec": 11.268466, + "compute_times": { + "total": 11.345806522294879, + "clean_up": 0.011073347181081772, + "create_cpp": 0.05416189879179001, + "file_setup": 0.1187604358419776, + "compile_cpp": 4.553891937248409, + "create_r1cs": 0.014190373942255974, + "save_results": 0.007122533395886421, + "get_r1cs_info": 0.0004680706188082695, + "groth16_setup": 1.5284202648326755, + "export_verification_key": 1.6278462577611208, + "download_trusted_setup_file": 1.8715678034350276, + "solidity_contract_generation": 1.5577266169711947 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.488628S", + "queue_time_sec": 0.488628, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "23aa50f4-3b3b-45da-829f-d5d66e4c4d11", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.711Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "sdk-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.210817S", + "compute_time_sec": 11.210817, + "compute_times": { + "total": 11.29248421639204, + "clean_up": 0.020679300650954247, + "create_cpp": 0.05491482466459274, + "file_setup": 0.10212271381169558, + "compile_cpp": 4.628723526373506, + "create_r1cs": 0.014838848263025284, + "save_results": 0.008825177326798439, + "get_r1cs_info": 0.00037500355392694473, + "groth16_setup": 1.5391744449734688, + "export_verification_key": 1.6044446052983403, + "download_trusted_setup_file": 1.8482900699600577, + "solidity_contract_generation": 1.4694783054292202 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M00.483270S", + "queue_time_sec": 0.48327, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1adbe754-bf55-4bc4-840b-b1a0c6211bba", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.631Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.272581S", + "compute_time_sec": 9.272581, + "compute_times": { + "total": 9.281027846038342, + "clean_up": 0.010583236813545227, + "create_cpp": 0.06096075102686882, + "file_setup": 0.06766684353351593, + "compile_cpp": 4.783785995095968, + "create_r1cs": 0.028285864740610123, + "save_results": 0.01832101121544838, + "get_r1cs_info": 0.0007419697940349579, + "groth16_setup": 1.4409223012626171, + "export_verification_key": 1.4080555588006973, + "download_trusted_setup_file": 0.003306623548269272, + "solidity_contract_generation": 1.4575624987483025 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M00.526207S", + "queue_time_sec": 0.526207, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "47dcd9c7-ad4c-442b-9749-1c4a223e9c41", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T20:01:44.622Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.295136S", + "compute_time_sec": 8.295136, + "compute_times": { + "total": 8.30126025620848, + "clean_up": 0.012490132823586464, + "create_cpp": 0.04419650696218014, + "file_setup": 0.0244809091091156, + "compile_cpp": 4.626262218691409, + "create_r1cs": 0.014991610310971737, + "save_results": 0.007189788389950991, + "get_r1cs_info": 0.00040078582242131233, + "groth16_setup": 1.1928394669666886, + "export_verification_key": 1.1747048920951784, + "download_trusted_setup_file": 0.0014825090765953064, + "solidity_contract_generation": 1.2017690567299724 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M05.783183S", + "queue_time_sec": 5.783183, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f6b090b6-cabd-49a6-8fd9-4a182d81b78e", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:54.727Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.085123S", + "compute_time_sec": 8.085123, + "compute_times": { + "total": 8.09137938497588, + "clean_up": 0.007791096810251474, + "create_cpp": 0.044438749086111784, + "file_setup": 0.024869628716260195, + "compile_cpp": 4.385270964819938, + "create_r1cs": 0.013867777306586504, + "save_results": 0.002616934012621641, + "get_r1cs_info": 0.00037747714668512344, + "groth16_setup": 1.2033112640492618, + "export_verification_key": 1.1794444089755416, + "download_trusted_setup_file": 0.0012541408650577068, + "solidity_contract_generation": 1.2276925309561193 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M48.713112S", + "queue_time_sec": 48.713112, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1d731595-c5f5-45c2-8c8a-74da993e6e82", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:54.698Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.356818S", + "compute_time_sec": 9.356818, + "compute_times": { + "total": 9.365758311003447, + "clean_up": 0.012013569474220276, + "create_cpp": 0.05509437248110771, + "file_setup": 0.04398589953780174, + "compile_cpp": 4.733264245092869, + "create_r1cs": 0.03983578085899353, + "save_results": 0.0039914920926094055, + "get_r1cs_info": 0.0008755624294281006, + "groth16_setup": 1.5458043776452541, + "export_verification_key": 1.5154130905866623, + "download_trusted_setup_file": 0.0033237673342227936, + "solidity_contract_generation": 1.4115587584674358 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M40.166302S", + "queue_time_sec": 40.166302, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "471011f8-5b73-487d-b681-cde9c96bf6cf", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:54.637Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.094395S", + "compute_time_sec": 8.094395, + "compute_times": { + "total": 8.100875509902835, + "clean_up": 0.04136878298595548, + "create_cpp": 0.04349753214046359, + "file_setup": 0.026510909665375948, + "compile_cpp": 4.416802708990872, + "create_r1cs": 0.014031601138412952, + "save_results": 0.00268988823518157, + "get_r1cs_info": 0.0004020840860903263, + "groth16_setup": 1.2034661802463233, + "export_verification_key": 1.1931509468704462, + "download_trusted_setup_file": 0.0012740916572511196, + "solidity_contract_generation": 1.1572514278814197 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M37.935772S", + "queue_time_sec": 37.935772, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ca8fd41d-f06c-44a6-a107-14aa6dd9ecf7", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:54.599Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.071530S", + "compute_time_sec": 9.07153, + "compute_times": { + "total": 9.079165190458298, + "clean_up": 0.0193355530500412, + "create_cpp": 0.05889047309756279, + "file_setup": 0.0320410318672657, + "compile_cpp": 4.729198798537254, + "create_r1cs": 0.026881281286478043, + "save_results": 0.005445607006549835, + "get_r1cs_info": 0.0007509514689445496, + "groth16_setup": 1.433782622218132, + "export_verification_key": 1.3903879560530186, + "download_trusted_setup_file": 0.0030304640531539917, + "solidity_contract_generation": 1.3787178322672844 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M30.148027S", + "queue_time_sec": 30.148027, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d59433ae-ab32-4660-b9e7-55cc83c769ba", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.488Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.343632S", + "compute_time_sec": 8.343632, + "compute_times": { + "total": 8.35001930873841, + "clean_up": 0.007048632018268108, + "create_cpp": 0.04429081408306956, + "file_setup": 0.026038472075015306, + "compile_cpp": 4.664958589244634, + "create_r1cs": 0.01457917457446456, + "save_results": 0.0031841211020946503, + "get_r1cs_info": 0.0003963680937886238, + "groth16_setup": 1.1928057740442455, + "export_verification_key": 1.196701374836266, + "download_trusted_setup_file": 0.0012594950385391712, + "solidity_contract_generation": 1.198316270019859 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M29.144473S", + "queue_time_sec": 29.144473, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "36805997-5a18-443e-9257-c7c755763dde", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.365Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.160020S", + "compute_time_sec": 9.16002, + "compute_times": { + "total": 9.166912835091352, + "clean_up": 0.01679837331175804, + "create_cpp": 0.06060396507382393, + "file_setup": 0.03646278753876686, + "compile_cpp": 4.784000992774963, + "create_r1cs": 0.027241531759500504, + "save_results": 0.004248317331075668, + "get_r1cs_info": 0.0007042139768600464, + "groth16_setup": 1.4266419857740402, + "export_verification_key": 1.362672533839941, + "download_trusted_setup_file": 0.003010723739862442, + "solidity_contract_generation": 1.4438144154846668 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M21.165635S", + "queue_time_sec": 21.165635, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d1a0a9ba-e043-44f0-99a8-fd5dff170035", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.359Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.236905S", + "compute_time_sec": 8.236905, + "compute_times": { + "total": 8.242964311037213, + "clean_up": 0.012127489317208529, + "create_cpp": 0.04317784681916237, + "file_setup": 0.032348338048905134, + "compile_cpp": 4.581387536134571, + "create_r1cs": 0.013678629882633686, + "save_results": 0.003174391109496355, + "get_r1cs_info": 0.00039021391421556473, + "groth16_setup": 1.1700614751316607, + "export_verification_key": 1.1969006708823144, + "download_trusted_setup_file": 0.00127820810303092, + "solidity_contract_generation": 1.1880456837825477 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M19.712185S", + "queue_time_sec": 19.712185, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "54ea40a5-484a-4f75-b90b-801c2029e5ff", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.302Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.349751S", + "compute_time_sec": 9.349751, + "compute_times": { + "total": 9.35859140008688, + "clean_up": 0.04139033704996109, + "create_cpp": 0.058571700006723404, + "file_setup": 0.04377163201570511, + "compile_cpp": 4.7014184929430485, + "create_r1cs": 0.030283328145742416, + "save_results": 0.0046038031578063965, + "get_r1cs_info": 0.0007254183292388916, + "groth16_setup": 1.5263193063437939, + "export_verification_key": 1.5056473389267921, + "download_trusted_setup_file": 0.0030246786773204803, + "solidity_contract_generation": 1.442214511334896 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M10.786668S", + "queue_time_sec": 10.786668, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ac715658-6a8a-4367-bd75-0a424786e519", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.239Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.180312S", + "compute_time_sec": 8.180312, + "compute_times": { + "total": 8.186462632846087, + "clean_up": 0.045027026906609535, + "create_cpp": 0.0433749882504344, + "file_setup": 0.03141862200573087, + "compile_cpp": 4.435339014977217, + "create_r1cs": 0.013826461043208838, + "save_results": 0.0033798501826822758, + "get_r1cs_info": 0.00041944393888115883, + "groth16_setup": 1.224611712154001, + "export_verification_key": 1.2071821950376034, + "download_trusted_setup_file": 0.0012525338679552078, + "solidity_contract_generation": 1.1802184996195138 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M10.326997S", + "queue_time_sec": 10.326997, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "603b8de8-6f35-4ec2-8d14-ef2aa169d207", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.217Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.303741S", + "compute_time_sec": 9.303741, + "compute_times": { + "total": 9.31076579540968, + "clean_up": 0.061482787132263184, + "create_cpp": 0.05447719618678093, + "file_setup": 0.031512293964624405, + "compile_cpp": 4.7843478843569756, + "create_r1cs": 0.025975871831178665, + "save_results": 0.03923590108752251, + "get_r1cs_info": 0.0007070451974868774, + "groth16_setup": 1.4105089977383614, + "export_verification_key": 1.4856252260506153, + "download_trusted_setup_file": 0.0032596364617347717, + "solidity_contract_generation": 1.4127150252461433 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.510621S", + "queue_time_sec": 0.510621, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "b049bcb2-0b00-4198-ab95-ec8e50de7d97", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:59:53.172Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "sdk-create-proof-multiplier2-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.028980S", + "compute_time_sec": 8.02898, + "compute_times": { + "total": 8.035278150811791, + "clean_up": 0.01962502161040902, + "create_cpp": 0.04339481005445123, + "file_setup": 0.032647415064275265, + "compile_cpp": 4.4359240545891225, + "create_r1cs": 0.015615029260516167, + "save_results": 0.005886566359549761, + "get_r1cs_info": 0.000441152136772871, + "groth16_setup": 1.1131845200434327, + "export_verification_key": 1.1628971919417381, + "download_trusted_setup_file": 0.0014497428201138973, + "solidity_contract_generation": 1.2036623698659241 + }, + "file_size": 236758, + "queue_time": "P0DT00H00M00.908491S", + "queue_time_sec": 0.908491, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0bcbb1d0-6b85-475d-8171-edf9e1080e40", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:05.009Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.126213S", + "compute_time_sec": 8.126213, + "compute_times": { + "total": 8.132407675962895, + "clean_up": 0.007584667764604092, + "create_cpp": 0.042764997109770775, + "file_setup": 0.026120834983885288, + "compile_cpp": 4.428840433247387, + "create_r1cs": 0.014064936898648739, + "save_results": 0.002591380849480629, + "get_r1cs_info": 0.0004473528824746609, + "groth16_setup": 1.2245488930493593, + "export_verification_key": 1.2121927668340504, + "download_trusted_setup_file": 0.0014441171661019325, + "solidity_contract_generation": 1.1712806271389127 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M41.945655S", + "queue_time_sec": 41.945655, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5af7d3a0-7d37-40fd-ae43-f0c0534c2abb", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:04.989Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.121498S", + "compute_time_sec": 10.121498, + "compute_times": { + "total": 10.192187146283686, + "clean_up": 0.007370655424892902, + "create_cpp": 0.05348123889416456, + "file_setup": 0.09328565560281277, + "compile_cpp": 4.610476811416447, + "create_r1cs": 0.013877511024475098, + "save_results": 0.008401993662118912, + "get_r1cs_info": 0.00035433657467365265, + "groth16_setup": 1.2056698258966208, + "export_verification_key": 1.309598419815302, + "download_trusted_setup_file": 1.6407124130055308, + "solidity_contract_generation": 1.2472198996692896 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M32.362941S", + "queue_time_sec": 32.362941, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "16c04ef9-9cca-4ec8-9970-4f731c4c14b2", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:04.951Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M12.708449S", + "compute_time_sec": 12.708449, + "compute_times": { + "total": 12.780335546471179, + "clean_up": 0.00712052546441555, + "create_cpp": 0.05351158231496811, + "file_setup": 0.10181075800210238, + "compile_cpp": 4.557366239838302, + "create_r1cs": 0.014364761300384998, + "save_results": 0.006636504083871841, + "get_r1cs_info": 0.0003865128383040428, + "groth16_setup": 1.2839274490252137, + "export_verification_key": 1.1864824369549751, + "download_trusted_setup_file": 4.378982369787991, + "solidity_contract_generation": 1.1881536152213812 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M31.606686S", + "queue_time_sec": 31.606686, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6ff777f6-9b50-4f6c-981d-521fafc84671", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:04.838Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.949829S", + "compute_time_sec": 7.949829, + "compute_times": { + "total": 7.955922733992338, + "clean_up": 0.007068471051752567, + "create_cpp": 0.04410888580605388, + "file_setup": 0.03530481783673167, + "compile_cpp": 4.332128805108368, + "create_r1cs": 0.013425733894109726, + "save_results": 0.002837574575096369, + "get_r1cs_info": 0.0003893752582371235, + "groth16_setup": 1.161221300251782, + "export_verification_key": 1.1779537368565798, + "download_trusted_setup_file": 0.0012618638575077057, + "solidity_contract_generation": 1.1798813971690834 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M31.787652S", + "queue_time_sec": 31.787652, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "95af3cd1-0e03-4eaa-8c53-9ebfa33bf8a0", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.781Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.360336S", + "compute_time_sec": 9.360336, + "compute_times": { + "total": 9.367515902966261, + "clean_up": 0.010363537818193436, + "create_cpp": 0.05697645619511604, + "file_setup": 0.03041290119290352, + "compile_cpp": 4.814989410340786, + "create_r1cs": 0.027097947895526886, + "save_results": 0.004793565720319748, + "get_r1cs_info": 0.0005631856620311737, + "groth16_setup": 1.5725701451301575, + "export_verification_key": 1.4042510092258453, + "download_trusted_setup_file": 0.001781608909368515, + "solidity_contract_generation": 1.4431796036660671 + }, + "file_size": 236699, + "queue_time": "P0DT00H00M31.558274S", + "queue_time_sec": 31.558274, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "57aac857-c3af-438c-baed-f67592f7e0b6", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.694Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.063800S", + "compute_time_sec": 8.0638, + "compute_times": { + "total": 8.0698571940884, + "clean_up": 0.041817264165729284, + "create_cpp": 0.042918319813907146, + "file_setup": 0.027425960171967745, + "compile_cpp": 4.428783264011145, + "create_r1cs": 0.013796785846352577, + "save_results": 0.003706465009599924, + "get_r1cs_info": 0.00041563110426068306, + "groth16_setup": 1.1387999886646867, + "export_verification_key": 1.1761264819651842, + "download_trusted_setup_file": 0.0012755142524838448, + "solidity_contract_generation": 1.194381969049573 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M23.279182S", + "queue_time_sec": 23.279182, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "8787776b-1d4e-4f64-b163-afbb70e6b767", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.635Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.481420S", + "compute_time_sec": 9.48142, + "compute_times": { + "total": 9.488476019352674, + "clean_up": 0.05146057903766632, + "create_cpp": 0.060663893818855286, + "file_setup": 0.04430835321545601, + "compile_cpp": 4.838594596832991, + "create_r1cs": 0.020446740090847015, + "save_results": 0.004841934889554977, + "get_r1cs_info": 0.0005115754902362823, + "groth16_setup": 1.4131469950079918, + "export_verification_key": 1.5755452923476696, + "download_trusted_setup_file": 0.0021246708929538727, + "solidity_contract_generation": 1.4762532263994217 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M21.172934S", + "queue_time_sec": 21.172934, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "48bb95d9-c534-4fe7-b124-425742bc9921", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.594Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.162530S", + "compute_time_sec": 8.16253, + "compute_times": { + "total": 8.168789067771286, + "clean_up": 0.03938836511224508, + "create_cpp": 0.044962076004594564, + "file_setup": 0.03627823106944561, + "compile_cpp": 4.3931147661060095, + "create_r1cs": 0.013748648576438427, + "save_results": 0.0029903058893978596, + "get_r1cs_info": 0.0004170541651546955, + "groth16_setup": 1.2192720943130553, + "export_verification_key": 1.1968067497946322, + "download_trusted_setup_file": 0.001256425864994526, + "solidity_contract_generation": 1.2201471300795674 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M12.596802S", + "queue_time_sec": 12.596802, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "aeabbcc8-f51b-447a-bdce-f26745134da4", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.539Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.395259S", + "compute_time_sec": 9.395259, + "compute_times": { + "total": 9.40173276886344, + "clean_up": 0.036699261516332626, + "create_cpp": 0.055065736174583435, + "file_setup": 0.03588276728987694, + "compile_cpp": 4.756860479712486, + "create_r1cs": 0.02753232792019844, + "save_results": 0.004547979682683945, + "get_r1cs_info": 0.0007234290242195129, + "groth16_setup": 1.5721957311034203, + "export_verification_key": 1.4162963964045048, + "download_trusted_setup_file": 0.003074031323194504, + "solidity_contract_generation": 1.4920402988791466 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M10.832412S", + "queue_time_sec": 10.832412, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "36dd6025-4eb3-4d05-8f90-f2c3f3a7a535", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.447Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.285888S", + "compute_time_sec": 9.285888, + "compute_times": { + "total": 9.293334130197763, + "clean_up": 0.14576196298003197, + "create_cpp": 0.0688214860856533, + "file_setup": 0.03694232553243637, + "compile_cpp": 4.733128450810909, + "create_r1cs": 0.026510365307331085, + "save_results": 0.015769515186548233, + "get_r1cs_info": 0.0007566735148429871, + "groth16_setup": 1.4665097445249557, + "export_verification_key": 1.3843789175152779, + "download_trusted_setup_file": 0.00330163910984993, + "solidity_contract_generation": 1.4105877801775932 + }, + "file_size": 236699, + "queue_time": "P0DT00H00M00.553921S", + "queue_time_sec": 0.553921, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5a788aec-2f48-426a-805f-cea70c7b517e", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:52:03.422Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.132105S", + "compute_time_sec": 8.132105, + "compute_times": { + "total": 8.138365669641644, + "clean_up": 0.04502389393746853, + "create_cpp": 0.044666612055152655, + "file_setup": 0.030826924834400415, + "compile_cpp": 4.406796374358237, + "create_r1cs": 0.014510322827845812, + "save_results": 0.006469338666647673, + "get_r1cs_info": 0.00039179716259241104, + "groth16_setup": 1.2137043341062963, + "export_verification_key": 1.1969101303257048, + "download_trusted_setup_file": 0.0014359885826706886, + "solidity_contract_generation": 1.1770805940032005 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M02.064952S", + "queue_time_sec": 2.064952, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "2ed76776-cacb-4a4e-8e1d-ee6bde20bef1", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:10.705Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.396318S", + "compute_time_sec": 11.396318, + "compute_times": { + "total": 11.470033745281398, + "clean_up": 0.00701205525547266, + "create_cpp": 0.05382066033780575, + "file_setup": 1.4752762140706182, + "compile_cpp": 4.674427920952439, + "create_r1cs": 0.014601892791688442, + "save_results": 0.006885666400194168, + "get_r1cs_info": 0.000477752648293972, + "groth16_setup": 1.1715044034644961, + "export_verification_key": 1.2684592045843601, + "download_trusted_setup_file": 1.6390948193147779, + "solidity_contract_generation": 1.1555112060159445 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M31.223842S", + "queue_time_sec": 31.223842, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "b43215d9-9873-4780-852e-7061f688bc52", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:10.562Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.443735S", + "compute_time_sec": 9.443735, + "compute_times": { + "total": 9.450845569372177, + "clean_up": 0.02927279844880104, + "create_cpp": 0.05816115811467171, + "file_setup": 0.15777237713336945, + "compile_cpp": 4.784576293081045, + "create_r1cs": 0.028225980699062347, + "save_results": 0.004189185798168182, + "get_r1cs_info": 0.0007221847772598267, + "groth16_setup": 1.4950053170323372, + "export_verification_key": 1.4608619846403599, + "download_trusted_setup_file": 0.0030181407928466797, + "solidity_contract_generation": 1.428341083228588 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M29.745647S", + "queue_time_sec": 29.745647, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "81114891-f37f-40fc-86cf-d5ff59c99aa3", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:10.557Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.678823S", + "compute_time_sec": 10.678823, + "compute_times": { + "total": 10.751442176289856, + "clean_up": 0.007087317295372486, + "create_cpp": 0.0551311019808054, + "file_setup": 0.47634816635400057, + "compile_cpp": 4.4943006709218025, + "create_r1cs": 0.015030437149107456, + "save_results": 0.006794212386012077, + "get_r1cs_info": 0.0004126187413930893, + "groth16_setup": 1.2948075635358691, + "export_verification_key": 1.2821088591590524, + "download_trusted_setup_file": 1.9244082383811474, + "solidity_contract_generation": 1.1933906180784106 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M28.193622S", + "queue_time_sec": 28.193622, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "065e17c3-c2f4-43dd-bfb4-25d47eb233c3", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:10.538Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.414766S", + "compute_time_sec": 8.414766, + "compute_times": { + "total": 8.420880552381277, + "clean_up": 0.007978992071002722, + "create_cpp": 0.04333283565938473, + "file_setup": 0.5263300491496921, + "compile_cpp": 4.3615459580905735, + "create_r1cs": 0.01324701588600874, + "save_results": 0.00261990400031209, + "get_r1cs_info": 0.000387819018214941, + "groth16_setup": 1.1325635826215148, + "export_verification_key": 1.1708158743567765, + "download_trusted_setup_file": 0.0012339763343334198, + "solidity_contract_generation": 1.1604830459691584 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M29.111535S", + "queue_time_sec": 29.111535, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "781e94db-ed81-4fd0-9343-6c793677ff70", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:08.499Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.358733S", + "compute_time_sec": 9.358733, + "compute_times": { + "total": 9.365748152136803, + "clean_up": 0.011520247906446457, + "create_cpp": 0.06019660457968712, + "file_setup": 0.10577539727091789, + "compile_cpp": 4.703875727951527, + "create_r1cs": 0.02623022347688675, + "save_results": 0.004578210413455963, + "get_r1cs_info": 0.0007093213498592377, + "groth16_setup": 1.4257720410823822, + "export_verification_key": 1.4767277836799622, + "download_trusted_setup_file": 0.0030381716787815094, + "solidity_contract_generation": 1.546669363975525 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M21.408702S", + "queue_time_sec": 21.408702, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "65769b35-c9e4-4af7-8c82-06905a3ea64a", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:08.485Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.123128S", + "compute_time_sec": 8.123128, + "compute_times": { + "total": 8.129186652600765, + "clean_up": 0.007306267973035574, + "create_cpp": 0.043123030103743076, + "file_setup": 0.10240558395162225, + "compile_cpp": 4.392980380915105, + "create_r1cs": 0.013700432144105434, + "save_results": 0.002628076821565628, + "get_r1cs_info": 0.0003788350149989128, + "groth16_setup": 1.203370461706072, + "export_verification_key": 1.19163934327662, + "download_trusted_setup_file": 0.001252820249646902, + "solidity_contract_generation": 1.1700899167917669 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M21.355433S", + "queue_time_sec": 21.355433, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "01500370-7d80-4ebc-980e-72c39d9c8133", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:08.322Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.135577S", + "compute_time_sec": 8.135577, + "compute_times": { + "total": 8.14212649827823, + "clean_up": 0.008815570268779993, + "create_cpp": 0.04607208725064993, + "file_setup": 0.06307885982096195, + "compile_cpp": 4.452890960033983, + "create_r1cs": 0.01411517197266221, + "save_results": 0.0035643167793750763, + "get_r1cs_info": 0.0005286457017064095, + "groth16_setup": 1.2346330340951681, + "export_verification_key": 1.1526859607547522, + "download_trusted_setup_file": 0.0017918283119797707, + "solidity_contract_generation": 1.163586282171309 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M11.618563S", + "queue_time_sec": 11.618563, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6ca5fa32-1923-4aae-aa0f-e4fd8ab09473", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:08.166Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.112566S", + "compute_time_sec": 10.112566, + "compute_times": { + "total": 10.12166041508317, + "clean_up": 0.025991924107074738, + "create_cpp": 0.059982024133205414, + "file_setup": 0.8414755500853062, + "compile_cpp": 4.779291275888681, + "create_r1cs": 0.03729795664548874, + "save_results": 0.004680760204792023, + "get_r1cs_info": 0.0004007294774055481, + "groth16_setup": 1.4218801073729992, + "export_verification_key": 1.5054523050785065, + "download_trusted_setup_file": 0.0012249797582626343, + "solidity_contract_generation": 1.4434016197919846 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M10.601842S", + "queue_time_sec": 10.601842, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "fb5b8145-6c9c-47cf-b43d-a0d0a8d9033e", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:07.863Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.798840S", + "compute_time_sec": 9.79884, + "compute_times": { + "total": 9.805086587090045, + "clean_up": 0.017840934917330742, + "create_cpp": 0.04466830240562558, + "file_setup": 0.03632312174886465, + "compile_cpp": 4.46386236185208, + "create_r1cs": 0.013613509014248848, + "save_results": 0.0058236150071024895, + "get_r1cs_info": 0.00040324777364730835, + "groth16_setup": 1.1662053586915135, + "export_verification_key": 1.1957588559016585, + "download_trusted_setup_file": 1.6592066353186965, + "solidity_contract_generation": 1.2010036744177341 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M00.794609S", + "queue_time_sec": 0.794609, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "68d462ae-a06c-4a0c-a324-f277e9a295cb", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:46:07.851Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.286921S", + "compute_time_sec": 9.286921, + "compute_times": { + "total": 9.294204972684383, + "clean_up": 0.037755388766527176, + "create_cpp": 0.05874794349074364, + "file_setup": 0.049215640872716904, + "compile_cpp": 4.828461483120918, + "create_r1cs": 0.027856364846229553, + "save_results": 0.0162334144115448, + "get_r1cs_info": 0.000544525682926178, + "groth16_setup": 1.4224261231720448, + "export_verification_key": 1.4274491891264915, + "download_trusted_setup_file": 0.0022099651396274567, + "solidity_contract_generation": 1.422630164772272 + }, + "file_size": 236699, + "queue_time": "P0DT00H00M00.526870S", + "queue_time_sec": 0.52687, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "14874d16-90cd-4d88-8cc9-5cd1b3aeb981", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:27.378Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.414659S", + "compute_time_sec": 10.414659, + "compute_times": { + "total": 10.421586342155933, + "clean_up": 1.018418900668621, + "create_cpp": 0.09886237978935242, + "file_setup": 0.032557349652051926, + "compile_cpp": 4.994046054780483, + "create_r1cs": 0.023644402623176575, + "save_results": 0.004409823566675186, + "get_r1cs_info": 0.0003830455243587494, + "groth16_setup": 1.3954695612192154, + "export_verification_key": 1.3882874809205532, + "download_trusted_setup_file": 0.00124397873878479, + "solidity_contract_generation": 1.4636627808213234 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M36.458050S", + "queue_time_sec": 36.45805, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6281da35-04b6-4277-97cd-d8be981166cb", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:27.292Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M31.514723S", + "compute_time_sec": 31.514723, + "compute_times": { + "total": 31.587601722218096, + "clean_up": 1.3367521865293384, + "create_cpp": 0.0535531360656023, + "file_setup": 0.09539989102631807, + "compile_cpp": 4.5397063894197345, + "create_r1cs": 0.015268071554601192, + "save_results": 0.007586983032524586, + "get_r1cs_info": 0.000410398468375206, + "groth16_setup": 1.1636218382045627, + "export_verification_key": 1.1995829408988357, + "download_trusted_setup_file": 21.99695172160864, + "solidity_contract_generation": 1.1782631734386086 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M34.955081S", + "queue_time_sec": 34.955081, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f740324d-25e6-4bd5-85ba-18d206130979", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:27.196Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.494207S", + "compute_time_sec": 8.494207, + "compute_times": { + "total": 8.500656279735267, + "clean_up": 0.12053109798580408, + "create_cpp": 0.045444861985743046, + "file_setup": 0.026300867088139057, + "compile_cpp": 4.599759000353515, + "create_r1cs": 0.01557931024581194, + "save_results": 0.006546936929225922, + "get_r1cs_info": 0.00045502185821533203, + "groth16_setup": 1.2972330059856176, + "export_verification_key": 1.164379082620144, + "download_trusted_setup_file": 0.0012656673789024353, + "solidity_contract_generation": 1.2227658918127418 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M35.091963S", + "queue_time_sec": 35.091963, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f3a78762-5fc9-4d64-8898-4d54ed0e1f64", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:27.185Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M14.092370S", + "compute_time_sec": 14.09237, + "compute_times": { + "total": 14.170980683527887, + "clean_up": 0.6386476065963507, + "create_cpp": 0.05371746979653835, + "file_setup": 0.09453251957893372, + "compile_cpp": 4.719313859008253, + "create_r1cs": 0.014484315179288387, + "save_results": 0.007699191570281982, + "get_r1cs_info": 0.00042401719838380814, + "groth16_setup": 1.2005331106483936, + "export_verification_key": 1.176824883557856, + "download_trusted_setup_file": 5.055020797997713, + "solidity_contract_generation": 1.2048570234328508 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M33.730977S", + "queue_time_sec": 33.730977, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "2ef7589c-3545-47d9-8b4a-1b8ddb5b23e7", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:25.238Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.065712S", + "compute_time_sec": 10.065712, + "compute_times": { + "total": 10.072701625525951, + "clean_up": 0.6220889613032341, + "create_cpp": 0.061540763825178146, + "file_setup": 0.04436195269227028, + "compile_cpp": 4.975892219692469, + "create_r1cs": 0.02939484640955925, + "save_results": 0.004608657211065292, + "get_r1cs_info": 0.0007254332304000854, + "groth16_setup": 1.4860176593065262, + "export_verification_key": 1.4028622955083847, + "download_trusted_setup_file": 0.0030446648597717285, + "solidity_contract_generation": 1.4413307309150696 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M27.478391S", + "queue_time_sec": 27.478391, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5308d35f-7520-4fc4-8002-d12fb7d6c550", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:25.110Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.034036S", + "compute_time_sec": 9.034036, + "compute_times": { + "total": 9.041137759573758, + "clean_up": 0.781280635856092, + "create_cpp": 0.04389587510377169, + "file_setup": 0.02839166857302189, + "compile_cpp": 4.609121230430901, + "create_r1cs": 0.014260401017963886, + "save_results": 0.002448432147502899, + "get_r1cs_info": 0.00035415682941675186, + "groth16_setup": 1.1984568303450942, + "export_verification_key": 1.1906320005655289, + "download_trusted_setup_file": 0.0012082979083061218, + "solidity_contract_generation": 1.1706976247951388 + }, + "file_size": 236700, + "queue_time": "P0DT00H00M22.546838S", + "queue_time_sec": 22.546838, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "8edd4c5c-3482-4dd0-8158-916fbf1ec8ba", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:25.009Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.819879S", + "compute_time_sec": 9.819879, + "compute_times": { + "total": 9.826730519533157, + "clean_up": 0.2898540087044239, + "create_cpp": 0.060190506279468536, + "file_setup": 0.03807961195707321, + "compile_cpp": 5.03364010155201, + "create_r1cs": 0.03027663379907608, + "save_results": 0.0042372532188892365, + "get_r1cs_info": 0.0007306970655918121, + "groth16_setup": 1.5062590315937996, + "export_verification_key": 1.459183730185032, + "download_trusted_setup_file": 0.0030453503131866455, + "solidity_contract_generation": 1.4005590714514256 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M16.821564S", + "queue_time_sec": 16.821564, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1e4069dc-4c01-4447-9db2-bad54289e388", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:24.828Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.228127S", + "compute_time_sec": 8.228127, + "compute_times": { + "total": 8.235012276098132, + "clean_up": 0.07664227951318026, + "create_cpp": 0.04467032477259636, + "file_setup": 0.026521790772676468, + "compile_cpp": 4.501883647404611, + "create_r1cs": 0.014303749427199364, + "save_results": 0.006712050177156925, + "get_r1cs_info": 0.00034636445343494415, + "groth16_setup": 1.1887650610879064, + "export_verification_key": 1.212520807981491, + "download_trusted_setup_file": 0.0012264503166079521, + "solidity_contract_generation": 1.1610937099903822 + }, + "file_size": 236699, + "queue_time": "P0DT00H00M11.716630S", + "queue_time_sec": 11.71663, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "3dea945e-041e-4c5b-81a3-e1acdc21cf98", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:24.757Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.778418S", + "compute_time_sec": 8.778418, + "compute_times": { + "total": 8.784422259777784, + "clean_up": 0.5511938845738769, + "create_cpp": 0.04414993338286877, + "file_setup": 0.03435874357819557, + "compile_cpp": 4.559329419396818, + "create_r1cs": 0.013913013972342014, + "save_results": 0.007126575335860252, + "get_r1cs_info": 0.00034239422529935837, + "groth16_setup": 1.210776842199266, + "export_verification_key": 1.1730632856488228, + "download_trusted_setup_file": 0.0014064284041523933, + "solidity_contract_generation": 1.1881988616660237 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M00.935423S", + "queue_time_sec": 0.935423, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "fc7d7c8f-dcf4-44f5-8477-c97cd73506f3", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-14T19:12:24.672Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.321396S", + "compute_time_sec": 10.321396, + "compute_times": { + "total": 10.328352369368076, + "clean_up": 0.7530637644231319, + "create_cpp": 0.055472735315561295, + "file_setup": 0.038075871765613556, + "compile_cpp": 4.720469500869513, + "create_r1cs": 0.03408133238554001, + "save_results": 0.0976421944797039, + "get_r1cs_info": 0.000644925981760025, + "groth16_setup": 1.4366725198924541, + "export_verification_key": 1.6893814019858837, + "download_trusted_setup_file": 0.002162136137485504, + "solidity_contract_generation": 1.4998642541468143 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M05.769197S", + "queue_time_sec": 5.769197, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d9a6165b-5c1b-4ba4-b170-919065591221", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-03-14T17:57:55.647Z", + "meta": {}, + "num_proofs": 26, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M09.426010S", + "compute_time_sec": 9.42601, + "compute_times": { + "total": 9.437843792140484, + "clean_up": 0.057791054248809814, + "create_cpp": 0.08009331300854683, + "file_setup": 0.12311352789402008, + "compile_cpp": 4.8931994587183, + "create_r1cs": 0.040594689548015594, + "save_results": 0.013895608484745026, + "get_r1cs_info": 0.0007071755826473236, + "groth16_setup": 1.397422555834055, + "export_verification_key": 1.450899638235569, + "download_trusted_setup_file": 0.0032965317368507385, + "solidity_contract_generation": 1.3762941025197506 + }, + "file_size": 1662684, + "queue_time": "P0DT00H00M00.493759S", + "queue_time_sec": 0.493759, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "4dd137c7-3687-4f1d-875e-f3d895afd41a", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-14T17:46:22.764Z", + "meta": {}, + "num_proofs": 10, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H01M56.925440S", + "compute_time_sec": 116.92544, + "compute_times": { + "total": 116.93180079571903, + "clean_up": 115.11400480102748, + "file_setup": 0.828845551237464, + "nargo_checks": 0.4802310625091195, + "save_results": 0.005098612979054451, + "solidity_contract_generation": 0.5030098343268037 + }, + "file_size": 5759848, + "queue_time": "P0DT00H00M00.606416S", + "queue_time_sec": 0.606416, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "f2eb3da8-7d12-4163-8b4c-bd04cd49334d", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-14T17:39:49.065Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.537494S", + "compute_time_sec": 6.537494, + "compute_times": { + "total": 6.544770289212465, + "clean_up": 4.34150518476963, + "file_setup": 1.006766278296709, + "nargo_checks": 0.5691491775214672, + "save_results": 0.014499358832836151, + "solidity_contract_generation": 0.6120997071266174 + }, + "file_size": 5759848, + "queue_time": "P0DT00H00M00.524349S", + "queue_time_sec": 0.524349, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "67c61291-24b1-4ed7-99dc-fb7d2c362dec", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:40:09.446Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.507493S", + "compute_time_sec": 0.507493, + "compute_times": { + "total": 0.5140813617035747, + "clean_up": 0.03107771696522832, + "file_setup": 0.035331026185303926, + "nargo_checks": 0.44723919685930014 + }, + "file_size": 3601, + "queue_time": "P0DT00H00M00.477408S", + "queue_time_sec": 0.477408, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "3ba5276f-50b2-489f-a5d6-4491b60c398d", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:39:49.955Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.843597S", + "compute_time_sec": 0.843597, + "compute_times": { + "total": 0.8497447483241558, + "clean_up": 0.35245564859360456, + "file_setup": 0.034467861987650394, + "nargo_checks": 0.462372618727386 + }, + "file_size": 3601, + "queue_time": "P0DT00H00M00.705808S", + "queue_time_sec": 0.705808, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "179cc7dc-ff08-4e5e-baea-502fe209dbc8", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:39:24.606Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.466730S", + "compute_time_sec": 0.46673, + "compute_times": { + "total": 0.47336474480107427, + "clean_up": 0.01973396772518754, + "file_setup": 0.030523537192493677, + "nargo_checks": 0.42268867418169975 + }, + "file_size": 3601, + "queue_time": "P0DT00H00M00.462655S", + "queue_time_sec": 0.462655, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "a27a3a89-5c63-4c80-bc26-2e77a2e07051", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:37:50.191Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.473263S", + "compute_time_sec": 0.473263, + "compute_times": { + "total": 0.4781973138451576, + "clean_up": 0.009893154725432396, + "file_setup": 0.02923344448208809, + "nargo_checks": 0.43864382058382034 + }, + "file_size": 3601, + "queue_time": "P0DT00H00M00.690682S", + "queue_time_sec": 0.690682, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "97d5b9a1-e80f-42dc-a63f-acce27606d70", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:37:41.691Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.668388S", + "compute_time_sec": 0.668388, + "compute_times": { + "total": 0.6738973991014063, + "clean_up": 0.20331718400120735, + "file_setup": 0.037314246874302626, + "nargo_checks": 0.43269583908841014 + }, + "file_size": 3601, + "queue_time": "P0DT00H00M00.530928S", + "queue_time_sec": 0.530928, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "a4cab353-4923-4b1b-a1c2-a24818843dcf", + "circuit_name": "noir-circuit", + "project_name": "noir-circuit", + "circuit_type": "noir", + "date_created": "2024-03-12T00:37:35.450Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.502202S", + "compute_time_sec": 0.502202, + "compute_times": { + "total": 0.508173649199307, + "clean_up": 0.009636486880481243, + "file_setup": 0.04673733003437519, + "nargo_checks": 0.45122806541621685 + }, + "file_size": 3601, + "queue_time": "P0DT00H00M00.703038S", + "queue_time_sec": 0.703038, + "uploaded_file_name": "noir-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit", + "noir_version": "0.23.0" + }, + { + "circuit_id": "fc985c97-0258-43d3-bae4-4927a5d7c848", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.709Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.821377S", + "compute_time_sec": 6.821377, + "compute_times": { + "total": 6.826562466099858, + "clean_up": 0.03631652891635895, + "create_cpp": 0.04230261128395796, + "file_setup": 0.03898624051362276, + "compile_cpp": 4.361995664425194, + "create_r1cs": 0.013952208682894707, + "save_results": 0.0029701171442866325, + "get_r1cs_info": 0.0003667334094643593, + "groth16_setup": 1.1385776856914163, + "export_verification_key": 1.189240344800055, + "download_trusted_setup_file": 0.0011938214302062988 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M30.605249S", + "queue_time_sec": 30.605249, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "981aabde-973e-462d-a949-33073f152bcf", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.491Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.876603S", + "compute_time_sec": 6.876603, + "compute_times": { + "total": 6.882667106110603, + "clean_up": 0.04546098504215479, + "create_cpp": 0.043475366197526455, + "file_setup": 0.03212927980348468, + "compile_cpp": 4.419587793760002, + "create_r1cs": 0.01546289399266243, + "save_results": 0.002493636216968298, + "get_r1cs_info": 0.00048116687685251236, + "groth16_setup": 1.1517645819112659, + "export_verification_key": 1.1701868688687682, + "download_trusted_setup_file": 0.001243850216269493 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M29.007266S", + "queue_time_sec": 29.007266, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "06dd98e5-2b36-415a-9594-abd7c551cc9d", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.347Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.924565S", + "compute_time_sec": 6.924565, + "compute_times": { + "total": 6.929660878144205, + "clean_up": 0.018933841958642006, + "create_cpp": 0.04256786499172449, + "file_setup": 0.02480014692991972, + "compile_cpp": 4.3917419938370585, + "create_r1cs": 0.013429097831249237, + "save_results": 0.0027808332815766335, + "get_r1cs_info": 0.00034791603684425354, + "groth16_setup": 1.2296617422252893, + "export_verification_key": 1.2036232966929674, + "download_trusted_setup_file": 0.0012051593512296677 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M22.741395S", + "queue_time_sec": 22.741395, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "01bc786f-f488-48d1-858c-adaa74f0fc10", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:59.342Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.942825S", + "compute_time_sec": 6.942825, + "compute_times": { + "total": 6.949025787878782, + "clean_up": 0.031298316083848476, + "create_cpp": 0.04343291139230132, + "file_setup": 0.02724728872999549, + "compile_cpp": 4.45128513360396, + "create_r1cs": 0.013787470292299986, + "save_results": 0.0027786437422037125, + "get_r1cs_info": 0.00040152110159397125, + "groth16_setup": 1.1622737408615649, + "export_verification_key": 1.214866721071303, + "download_trusted_setup_file": 0.001195291057229042 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M21.206540S", + "queue_time_sec": 21.20654, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "32cf63b9-24b0-461e-aa7a-185a49e0b3b1", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.959Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.780219S", + "compute_time_sec": 6.780219, + "compute_times": { + "total": 6.785887842997909, + "clean_up": 0.04605554789304733, + "create_cpp": 0.04327188339084387, + "file_setup": 0.027595113962888718, + "compile_cpp": 4.341672266833484, + "create_r1cs": 0.015188083983957767, + "save_results": 0.0029082708060741425, + "get_r1cs_info": 0.0004408573731780052, + "groth16_setup": 1.1388461524620652, + "export_verification_key": 1.1682334607467055, + "download_trusted_setup_file": 0.0012331167235970497 + }, + "file_size": 225450, + "queue_time": "P0DT00H00M17.005312S", + "queue_time_sec": 17.005312, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ff3e0d31-0c74-4f03-9f6f-725dd8d69acb", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.944Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.894050S", + "compute_time_sec": 6.89405, + "compute_times": { + "total": 6.900198160205036, + "clean_up": 0.008259693160653114, + "create_cpp": 0.04261480597779155, + "file_setup": 0.02665704721584916, + "compile_cpp": 4.348901640623808, + "create_r1cs": 0.014178600162267685, + "save_results": 0.0026379870250821114, + "get_r1cs_info": 0.00040513090789318085, + "groth16_setup": 1.2399181728251278, + "export_verification_key": 1.2150304690003395, + "download_trusted_setup_file": 0.001215549185872078 + }, + "file_size": 225450, + "queue_time": "P0DT00H00M15.716837S", + "queue_time_sec": 15.716837, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "56ce7867-1426-4830-8883-c68f390b00e3", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.833Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.918743S", + "compute_time_sec": 6.918743, + "compute_times": { + "total": 6.924384770914912, + "clean_up": 0.00972826313227415, + "create_cpp": 0.04441164992749691, + "file_setup": 0.027338513173162937, + "compile_cpp": 4.443122708238661, + "create_r1cs": 0.014043214730918407, + "save_results": 0.0032253582030534744, + "get_r1cs_info": 0.00039947032928466797, + "groth16_setup": 1.1997679574415088, + "export_verification_key": 1.180700602941215, + "download_trusted_setup_file": 0.0012276563793420792 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M08.861907S", + "queue_time_sec": 8.861907, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6859c5a2-7d9e-4e8f-80f7-764622fd6d84", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.770Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.685175S", + "compute_time_sec": 6.685175, + "compute_times": { + "total": 6.691927400883287, + "clean_up": 0.009768068790435791, + "create_cpp": 0.0421549417078495, + "file_setup": 0.026188824325799942, + "compile_cpp": 4.305569048970938, + "create_r1cs": 0.013142664916813374, + "save_results": 0.002773165237158537, + "get_r1cs_info": 0.0003167171962559223, + "groth16_setup": 1.1705206399783492, + "export_verification_key": 1.1197901628911495, + "download_trusted_setup_file": 0.0012216591276228428 + }, + "file_size": 225450, + "queue_time": "P0DT00H00M08.196652S", + "queue_time_sec": 8.196652, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "8607a391-84cf-4d0e-ae50-a120fa1578cc", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.765Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.844521S", + "compute_time_sec": 6.844521, + "compute_times": { + "total": 6.849527047015727, + "clean_up": 0.021212157793343067, + "create_cpp": 0.042430317029356956, + "file_setup": 0.028176416642963886, + "compile_cpp": 4.403458681888878, + "create_r1cs": 0.013620416633784771, + "save_results": 0.007373335771262646, + "get_r1cs_info": 0.00034633465111255646, + "groth16_setup": 1.1376929804682732, + "export_verification_key": 1.1933853346854448, + "download_trusted_setup_file": 0.0013576876372098923 + }, + "file_size": 225450, + "queue_time": "P0DT00H00M00.748407S", + "queue_time_sec": 0.748407, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ba28e6bf-82b3-4d6d-9dc6-40bb8a03ae61", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-03-12T00:28:56.689Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.784180S", + "compute_time_sec": 6.78418, + "compute_times": { + "total": 6.789581563323736, + "clean_up": 0.008159313350915909, + "create_cpp": 0.04301437921822071, + "file_setup": 0.03162584872916341, + "compile_cpp": 4.316627806052566, + "create_r1cs": 0.01355265872552991, + "save_results": 0.006111504044383764, + "get_r1cs_info": 0.00033407704904675484, + "groth16_setup": 1.2013251609168947, + "export_verification_key": 1.1670180107466877, + "download_trusted_setup_file": 0.0014280471950769424 + }, + "file_size": 225416, + "queue_time": "P0DT00H00M00.480293S", + "queue_time_sec": 0.480293, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0b4fd3d0-67ce-437a-aeef-9acf90cf2cb2", + "circuit_name": "poseidon", + "project_name": "poseidon", + "circuit_type": "gnark", + "date_created": "2024-03-02T21:08:55.369Z", + "meta": {}, + "num_proofs": 229, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M20.064560S", + "compute_time_sec": 20.06456, + "compute_times": { + "total": 20.07014292757958, + "compile": 12.642420304007828, + "clean_up": 5.060501893050969, + "file_setup": 2.2013850677758455, + "save_results": 0.036197442561388016, + "compile_r1cs_and_keygen": 0.12922980543226004 + }, + "file_size": 30921195, + "queue_time": "P0DT00H00M00.281108S", + "queue_time_sec": 0.281108, + "uploaded_file_name": "poseidon.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "0eb2c291-0347-4172-8cfe-c4b3edb2f54a", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "gnark", + "date_created": "2024-02-28T18:01:02.213Z", + "meta": {}, + "num_proofs": 2, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M14.157686S", + "compute_time_sec": 14.157686, + "compute_times": { + "total": 14.164283829275519, + "compile": 9.50105039961636, + "clean_up": 2.131474153138697, + "file_setup": 2.504877657163888, + "save_results": 0.007419941946864128, + "compile_r1cs_and_keygen": 0.018980357330292463 + }, + "file_size": 19726986, + "queue_time": "P0DT00H00M00.242197S", + "queue_time_sec": 0.242197, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "e8a1472e-d889-42ad-b452-f52ad00d6c60", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2024-02-28T16:06:54.944Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "ews-my-branch" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.680331S", + "compute_time_sec": 2.680331, + "compute_times": { + "total": 2.6865532309748232, + "clean_up": 0.15621905494481325, + "file_setup": 0.07576264115050435, + "create_r1cs": 0.02499393606558442, + "create_wasm": 0.037889659870415926, + "save_results": 0.006284092087298632, + "get_r1cs_info": 0.0003155169542878866, + "groth16_setup": 1.1963414950296283, + "export_verification_key": 1.1868828509468585, + "download_trusted_setup_file": 0.0014421690721064806 + }, + "file_size": 1467971, + "queue_time": "P0DT00H00M00.278162S", + "queue_time_sec": 0.278162, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "6604d985-9f8b-4625-8337-dad8ba54d982", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2024-02-28T16:06:28.625Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.723950S", + "compute_time_sec": 2.72395, + "compute_times": { + "total": 2.730448425281793, + "clean_up": 0.03860751632601023, + "file_setup": 0.08125918405130506, + "create_r1cs": 0.025404677726328373, + "create_wasm": 0.03741568187251687, + "save_results": 0.007240877952426672, + "get_r1cs_info": 0.00033877836540341377, + "groth16_setup": 1.2571284701116383, + "export_verification_key": 1.2813060129992664, + "download_trusted_setup_file": 0.0013454826548695564 + }, + "file_size": 1467971, + "queue_time": "P0DT00H00M00.247590S", + "queue_time_sec": 0.24759, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "6e4f42d6-18d6-4e5e-8ed4-bac538515f27", + "circuit_name": "hash-checker", + "project_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-27T01:57:59.411Z", + "meta": {}, + "num_proofs": 4, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M36.843744S", + "compute_time_sec": 36.843744, + "compute_times": { + "total": 36.91908207698725, + "clean_up": 0.03467807709239423, + "create_cpp": 0.7680627549998462, + "file_setup": 0.1394905720371753, + "compile_cpp": 28.152615127852187, + "create_r1cs": 0.34302311204373837, + "save_results": 0.006143820006400347, + "get_r1cs_info": 0.0005576841067522764, + "groth16_setup": 4.3415444530546665, + "export_verification_key": 1.252952174982056, + "download_trusted_setup_file": 1.879397285869345 + }, + "file_size": 3870229, + "queue_time": "P0DT00H00M00.286679S", + "queue_time_sec": 0.286679, + "uploaded_file_name": "hash-checker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "d3ce1234-c288-426a-9a62-9d1b08fde708", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-02-26T02:32:51.263Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.040985S", + "compute_time_sec": 0.040985, + "compute_times": { + "total": 0.03328296495601535, + "file_setup": 0.02101697097532451, + "create_wasm": 0.011749706929549575 + }, + "file_size": 1015, + "queue_time": "P0DT00H00M00.306452S", + "queue_time_sec": 0.306452, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code --output /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990 --wasm /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code/./circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/d3ce1234-c288-426a-9a62-9d1b08fde708_1708914771569990/code/./circuit.circom':17:5\n │\n17 │ differenceInverse <== difference != 0 ? 1 / difference : 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->isEqual\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "982703f3-8e15-4de1-8f59-ca066d139692", + "circuit_name": "hash-checker", + "project_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-25T21:21:18.316Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M36.116953S", + "compute_time_sec": 36.116953, + "compute_times": { + "total": 36.12258589011617, + "clean_up": 0.045256566954776645, + "create_cpp": 0.7550635728985071, + "file_setup": 0.055438351118937135, + "compile_cpp": 27.543986437143758, + "create_r1cs": 0.34856289392337203, + "save_results": 0.005512146046385169, + "get_r1cs_info": 0.0005783189553767443, + "groth16_setup": 4.374077996937558, + "export_verification_key": 1.1806295281276107, + "download_trusted_setup_file": 1.8129089260473847 + }, + "file_size": 3870232, + "queue_time": "P0DT00H00M00.280658S", + "queue_time_sec": 0.280658, + "uploaded_file_name": "hash-checker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "a9df4d3c-b90c-4a46-9110-4459b7c5ea96", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-02-25T21:15:00.721Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.153850S", + "compute_time_sec": 0.15385, + "compute_times": { + "total": 0.14053412294015288, + "file_setup": 0.12803456606343389, + "create_wasm": 0.01188180991448462 + }, + "file_size": 1004, + "queue_time": "P0DT00H00M00.345862S", + "queue_time_sec": 0.345862, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code --output /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034 --wasm /forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code/./circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/forge/data/pods/zk-workers-compile-688bcd68f9-7pbrt/circuits/a9df4d3c-b90c-4a46-9110-4459b7c5ea96_1708895701067034/code/./circuit.circom':17:5\n │\n17 │ differenceInverse <== difference != 0 ? 1 / difference : 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->isEqual\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "729b7ce0-829c-4317-b785-f0e4bc807e90", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-02-22T00:02:35.495Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.105806S", + "compute_time_sec": 8.105806, + "compute_times": { + "total": 8.111726151080802, + "clean_up": 0.03814816800877452, + "create_cpp": 0.11785020097158849, + "file_setup": 0.07184063596650958, + "compile_cpp": 4.999685499118641, + "create_r1cs": 0.027501144912093878, + "save_results": 0.0056748660281300545, + "get_r1cs_info": 0.0003923040349036455, + "groth16_setup": 1.33484046603553, + "export_verification_key": 1.5138321269769222, + "download_trusted_setup_file": 0.0013768889475613832 + }, + "file_size": 1650685, + "queue_time": "P0DT00H00M00.299859S", + "queue_time_sec": 0.299859, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "8378ba8b-2ff2-4c9d-88b1-417bd444562c", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-02-21T23:58:37.180Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.050622S", + "compute_time_sec": 7.050622, + "compute_times": { + "total": 7.057020629988983, + "clean_up": 0.062270441092550755, + "create_cpp": 0.06243468704633415, + "file_setup": 0.07652567396871746, + "compile_cpp": 4.485646587098017, + "create_r1cs": 0.02570242597721517, + "save_results": 0.00595727888867259, + "get_r1cs_info": 0.00039725680835545063, + "groth16_setup": 1.17986157303676, + "export_verification_key": 1.1563023570924997, + "download_trusted_setup_file": 0.0012368990574032068 + }, + "file_size": 1651141, + "queue_time": "P0DT00H00M00.297240S", + "queue_time_sec": 0.29724, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "9eeb24ce-0c3f-41b7-88a0-c7676048bf02", + "circuit_name": "hash-checker", + "project_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-16T16:44:06.247Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M35.940220S", + "compute_time_sec": 35.94022, + "compute_times": { + "total": 35.94744881300721, + "clean_up": 0.0907127889804542, + "create_cpp": 0.8199345880420879, + "file_setup": 0.08025214297231287, + "compile_cpp": 27.603134420933202, + "create_r1cs": 0.38317175407428294, + "save_results": 0.009111783001571894, + "get_r1cs_info": 0.0010840859031304717, + "groth16_setup": 4.134320180979557, + "export_verification_key": 1.0508651459822431, + "download_trusted_setup_file": 1.7740050770808011 + }, + "file_size": 3869586, + "queue_time": "P0DT00H00M00.255393S", + "queue_time_sec": 0.255393, + "uploaded_file_name": "hash-checker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 1, + "num_private_inputs": 4, + "num_public_inputs": 0 + }, + { + "circuit_id": "38231b46-bd56-4379-8190-38fff9f58e03", + "circuit_name": "hash-checker", + "project_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-15T19:07:26.262Z", + "meta": {}, + "num_proofs": 2, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M35.144392S", + "compute_time_sec": 35.144392, + "compute_times": { + "total": 35.15089295199141, + "clean_up": 0.11753120506182313, + "create_cpp": 0.7529647811315954, + "file_setup": 0.06330146407708526, + "compile_cpp": 28.331635219044983, + "create_r1cs": 0.34842015197500587, + "save_results": 0.010279993992298841, + "get_r1cs_info": 0.0006776847876608372, + "groth16_setup": 4.291510064154863, + "export_verification_key": 1.2317856717854738, + "download_trusted_setup_file": 0.002070905175060034 + }, + "file_size": 3870226, + "queue_time": "P0DT00H00M00.226366S", + "queue_time_sec": 0.226366, + "uploaded_file_name": "hash-checker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "5a73fad1-054f-4925-9773-57413273afe3", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-02-15T16:46:44.192Z", + "meta": {}, + "num_proofs": 5, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.775219S", + "compute_time_sec": 6.775219, + "compute_times": { + "total": 6.786237360094674, + "clean_up": 0.02926708501763642, + "create_cpp": 0.06894711602944881, + "file_setup": 0.06364756193943322, + "compile_cpp": 4.536427660030313, + "create_r1cs": 0.0257944610202685, + "save_results": 0.008142217062413692, + "get_r1cs_info": 0.000770728918723762, + "groth16_setup": 1.0133657020051032, + "export_verification_key": 1.0354817470069975, + "download_trusted_setup_file": 0.003386533004231751 + }, + "file_size": 232969, + "queue_time": "P0DT00H00M00.306632S", + "queue_time_sec": 0.306632, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "4d41a99b-b4b3-4203-b680-ba29664964ca", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-02-15T16:44:21.936Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.525882S", + "compute_time_sec": 7.525882, + "compute_times": { + "total": 7.532384330872446, + "clean_up": 0.41135954577475786, + "create_cpp": 0.044112610165029764, + "file_setup": 0.05311372969299555, + "compile_cpp": 4.545667007099837, + "create_r1cs": 0.021503231953829527, + "save_results": 0.023626559413969517, + "get_r1cs_info": 0.0004302137531340122, + "groth16_setup": 1.2149698357097805, + "export_verification_key": 1.2118688928894699, + "download_trusted_setup_file": 0.004898259416222572 + }, + "file_size": 232949, + "queue_time": "P0DT00H00M00.273291S", + "queue_time_sec": 0.273291, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "aa58eb57-d5d7-4f23-ad23-196a6a818e33", + "circuit_name": "hash-checker", + "project_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-15T16:21:42.338Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M35.218699S", + "compute_time_sec": 35.218699, + "compute_times": { + "total": 35.2277638950618, + "clean_up": 0.1369406400481239, + "create_cpp": 0.8040473599685356, + "file_setup": 0.1467569509986788, + "compile_cpp": 27.42731417901814, + "create_r1cs": 0.37680110498331487, + "save_results": 0.008219165029004216, + "get_r1cs_info": 0.0012246599653735757, + "groth16_setup": 4.11037651298102, + "export_verification_key": 1.009748816024512, + "download_trusted_setup_file": 1.2047668669838458 + }, + "file_size": 3868192, + "queue_time": "P0DT00H00M00.317566S", + "queue_time_sec": 0.317566, + "uploaded_file_name": "hash-checker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "f593a775-723c-4c57-8d75-196aa8c22aa0", + "circuit_name": "hash-checker", + "project_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-15T16:20:47.501Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M34.701699S", + "compute_time_sec": 34.701699, + "compute_times": { + "total": 34.707892696838826, + "clean_up": 0.09660972375422716, + "create_cpp": 0.7858420582488179, + "file_setup": 0.062256335746496916, + "compile_cpp": 27.987545497715473, + "create_r1cs": 0.3427793183363974, + "save_results": 0.006912626326084137, + "get_r1cs_info": 0.0007053948938846588, + "groth16_setup": 4.240857229102403, + "export_verification_key": 1.1814902885816991, + "download_trusted_setup_file": 0.002157846000045538 + }, + "file_size": 3868192, + "queue_time": "P0DT00H00M00.318933S", + "queue_time_sec": 0.318933, + "uploaded_file_name": "hash-checker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "f0f14b03-8cdd-43ca-9b1a-7f8cbeb5e5b4", + "circuit_name": "rate-limiting-nullifier", + "project_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-15T00:37:02.228Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M55.791705S", + "compute_time_sec": 55.791705, + "compute_times": { + "total": 55.797921964898705, + "clean_up": 0.07545234775170684, + "create_cpp": 1.1982138170860708, + "file_setup": 0.0613596779294312, + "compile_cpp": 36.85164702497423, + "create_r1cs": 0.7978045740164816, + "save_results": 0.006434123031795025, + "get_r1cs_info": 0.002160165924578905, + "groth16_setup": 15.61639252398163, + "export_verification_key": 1.167371460236609, + "download_trusted_setup_file": 0.020440288819372654 + }, + "file_size": 7540832, + "queue_time": "P0DT00H00M00.257892S", + "queue_time_sec": 0.257892, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 + }, + { + "circuit_id": "f2b8f457-542b-4119-b117-7d320b66bb7c", + "circuit_name": "rate-limiting-nullifier", + "project_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T23:58:52.084Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M56.901539S", + "compute_time_sec": 56.901539, + "compute_times": { + "total": 56.907790740951896, + "clean_up": 0.1532127452082932, + "create_cpp": 1.1961525329388678, + "file_setup": 0.05804666178300977, + "compile_cpp": 38.085547543130815, + "create_r1cs": 0.8190577877685428, + "save_results": 0.010267478879541159, + "get_r1cs_info": 0.002185516059398651, + "groth16_setup": 15.381996811367571, + "export_verification_key": 1.1801622677594423, + "download_trusted_setup_file": 0.020589394960552454 + }, + "file_size": 7540785, + "queue_time": "P0DT00H00M00.286676S", + "queue_time_sec": 0.286676, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 + }, + { + "circuit_id": "24eaddb7-b29e-407d-8445-acae4d1251c0", + "circuit_name": "rate-limiting-nullifier", + "project_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T23:57:50.289Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M56.834710S", + "compute_time_sec": 56.83471, + "compute_times": { + "total": 56.8432289250195, + "clean_up": 0.10309748293366283, + "create_cpp": 1.2134589219931513, + "file_setup": 0.09620017104316503, + "compile_cpp": 38.34681939892471, + "create_r1cs": 0.824894416029565, + "save_results": 0.010392117081210017, + "get_r1cs_info": 0.004026207025162876, + "groth16_setup": 15.126561413053423, + "export_verification_key": 1.0899655069224536, + "download_trusted_setup_file": 0.02710751595441252 + }, + "file_size": 7540780, + "queue_time": "P0DT00H00M00.287988S", + "queue_time_sec": 0.287988, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 + }, + { + "circuit_id": "823d02d8-4196-41c8-8795-afa03f834d9c", + "circuit_name": "rate-limiting-nullifier", + "project_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T23:52:09.320Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M57.335290S", + "compute_time_sec": 57.33529, + "compute_times": { + "total": 57.34173893509433, + "clean_up": 0.10366297094151378, + "create_cpp": 1.246839945204556, + "file_setup": 0.06519381469115615, + "compile_cpp": 38.10613914998248, + "create_r1cs": 0.821301891002804, + "save_results": 0.0067642792128026485, + "get_r1cs_info": 0.002133298199623823, + "groth16_setup": 15.753068736288697, + "export_verification_key": 1.2155762687325478, + "download_trusted_setup_file": 0.020359096582978964 + }, + "file_size": 7540742, + "queue_time": "P0DT00H00M00.278472S", + "queue_time_sec": 0.278472, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 + }, + { + "circuit_id": "826533ec-50c2-4b77-bb69-dc309611e4e0", + "circuit_name": "rate-limiting-nullifier", + "project_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T23:43:09.159Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M54.984651S", + "compute_time_sec": 54.984651, + "compute_times": { + "total": 54.99341053608805, + "clean_up": 0.06826841598376632, + "create_cpp": 1.2764658289961517, + "file_setup": 0.08957945799920708, + "compile_cpp": 36.77387927705422, + "create_r1cs": 0.801689010928385, + "save_results": 0.009336387040093541, + "get_r1cs_info": 0.003953314037062228, + "groth16_setup": 14.896520375041291, + "export_verification_key": 1.0483920950209722, + "download_trusted_setup_file": 0.024622616940177977 + }, + "file_size": 7540733, + "queue_time": "P0DT00H00M00.304312S", + "queue_time_sec": 0.304312, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 + }, + { + "circuit_id": "4830fb89-cbb8-44b3-bea1-1b30a1637c1b", + "circuit_name": "rate-limiting-nullifier", + "project_name": "rate-limiting-nullifier", + "circuit_type": "circom", + "date_created": "2024-02-14T21:42:21.824Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M56.975886S", + "compute_time_sec": 56.975886, + "compute_times": { + "total": 56.984479263890535, + "clean_up": 0.071199910948053, + "create_cpp": 1.246658438933082, + "file_setup": 0.08264653407968581, + "compile_cpp": 37.13031674805097, + "create_r1cs": 0.8157099969685078, + "save_results": 0.008955279947258532, + "get_r1cs_info": 0.004004108952358365, + "groth16_setup": 14.917821239912882, + "export_verification_key": 1.06573862710502, + "download_trusted_setup_file": 1.640640855068341 + }, + "file_size": 7540735, + "queue_time": "P0DT00H00M00.322200S", + "queue_time_sec": 0.3222, + "uploaded_file_name": "rate-limiting-nullifier.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5820, + "num_outputs": 3, + "num_private_inputs": 43, + "num_public_inputs": 2 + }, + { + "circuit_id": "0f081333-dfdd-4602-934c-f7da54fadcc6", + "circuit_name": "hash-checker", + "project_name": "hash-checker", + "circuit_type": "circom", + "date_created": "2024-02-14T21:41:14.188Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M36.819064S", + "compute_time_sec": 36.819064, + "compute_times": { + "total": 36.826748004648834, + "clean_up": 0.11822917684912682, + "create_cpp": 0.7589871259406209, + "file_setup": 0.15491734398528934, + "compile_cpp": 28.743124674074352, + "create_r1cs": 0.35148238157853484, + "save_results": 0.00582153769209981, + "get_r1cs_info": 0.0006839861162006855, + "groth16_setup": 4.374190780799836, + "export_verification_key": 1.1788361864164472, + "download_trusted_setup_file": 1.1384393190965056 + }, + "file_size": 3867265, + "queue_time": "P0DT00H00M00.269335S", + "queue_time_sec": 0.269335, + "uploaded_file_name": "hash-checker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "83ab5079-fa86-4f48-ad9d-68c60a0957ee", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-02-14T21:39:50.042Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M47.319956S", + "compute_time_sec": 47.319956, + "compute_times": { + "total": 47.326535122003406, + "clean_up": 0.08247739961370826, + "create_cpp": 1.000471537001431, + "file_setup": 0.0585682881064713, + "compile_cpp": 29.038879429921508, + "create_r1cs": 0.6561976410448551, + "save_results": 0.006647040136158466, + "get_r1cs_info": 0.0020793969742953777, + "groth16_setup": 15.312814712058753, + "export_verification_key": 1.1472203098237514, + "download_trusted_setup_file": 0.02056274702772498 + }, + "file_size": 6775884, + "queue_time": "P0DT00H00M00.256588S", + "queue_time_sec": 0.256588, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 + }, + { + "circuit_id": "d62a7af2-36c9-401f-aa28-fd372e6ea1f2", + "circuit_name": "Semaphore", + "project_name": "Semaphore", + "circuit_type": "circom", + "date_created": "2024-02-14T21:36:56.776Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M47.874450S", + "compute_time_sec": 47.87445, + "compute_times": { + "total": 47.88067169301212, + "clean_up": 0.08292657090350986, + "create_cpp": 1.0067430417984724, + "file_setup": 0.060509118251502514, + "compile_cpp": 28.465293834917247, + "create_r1cs": 0.6478999992832541, + "save_results": 0.00611361488699913, + "get_r1cs_info": 0.0020417659543454647, + "groth16_setup": 14.801113961264491, + "export_verification_key": 1.1754452609457076, + "download_trusted_setup_file": 1.6319761737249792 + }, + "file_size": 6775882, + "queue_time": "P0DT00H00M00.241228S", + "queue_time_sec": 0.241228, + "uploaded_file_name": "Semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 + }, + { + "circuit_id": "2e554eef-5434-4c0b-9e68-857ab611b10a", + "circuit_name": "email", + "project_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T16:08:08.930Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.897920S", + "compute_time_sec": 2.89792, + "compute_times": { + "total": 0.9285368990385905, + "create_cpp": 0.04405528900679201, + "file_setup": 0.8838426299626008 + }, + "file_size": 24822850, + "queue_time": "P0DT00H00M00.329843S", + "queue_time_sec": 0.329843, + "uploaded_file_name": "email.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/2e554eef-5434-4c0b-9e68-857ab611b10a_1707926889259673/code/./circuit.circom stdout: stderr: error[P1001]: No main specified in the project structure\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "8258335e-20af-431b-95bb-f443592f598e", + "circuit_name": "email", + "project_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T16:06:51.116Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M03.346644S", + "compute_time_sec": 3.346644, + "compute_times": { + "total": 0.8087141560390592, + "create_cpp": 0.01664800103753805, + "file_setup": 0.791186569724232 + }, + "file_size": 24822792, + "queue_time": "P0DT00H00M00.273012S", + "queue_time_sec": 0.273012, + "uploaded_file_name": "email.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640/code --output /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640 --c /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8258335e-20af-431b-95bb-f443592f598e_1707926811388640/code/./circuit.circom stdout: stderr: error[P1014]: The file circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "357ab818-e35a-4c82-9839-92d5afbce08f", + "circuit_name": "email", + "project_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T16:02:01.839Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M03.017827S", + "compute_time_sec": 3.017827, + "compute_times": { + "total": 0.8431280389195308, + "create_cpp": 0.03038154193200171, + "file_setup": 0.8116235659690574 + }, + "file_size": 24822332, + "queue_time": "P0DT00H00M00.475505S", + "queue_time_sec": 0.475505, + "uploaded_file_name": "email.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/357ab818-e35a-4c82-9839-92d5afbce08f_1707926522313772/code/./circuit.circom stdout: stderr: error[P1014]: The file circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "8bf2ef60-96b8-4974-9b7c-cf0763ee661c", + "circuit_name": "email", + "project_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T16:00:40.414Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.297335S", + "compute_time_sec": 0.297335, + "compute_times": { + "total": 0.11431554611772299, + "create_cpp": 0.014114855322986841, + "file_setup": 0.09887601295486093 + }, + "file_size": 1416811, + "queue_time": "P0DT00H00M00.292787S", + "queue_time_sec": 0.292787, + "uploaded_file_name": "email.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781/code --output /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781 --c /forge/data/pods/zk-workers-compile-6858bfd795-xk6vr/circuits/8bf2ef60-96b8-4974-9b7c-cf0763ee661c_1707926440705781/code/./circuit.circom stdout: stderr: error[P1014]: The file node_modules/@zk-email/zk-regex-circom/circuits/regex_helpers.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "62b994f3-3460-46af-b5b1-4876175b117b", + "circuit_name": "email", + "project_name": "email", + "circuit_type": "circom", + "date_created": "2024-02-14T15:56:00.936Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.259954S", + "compute_time_sec": 0.259954, + "compute_times": { + "total": 0.12665929598733783, + "create_cpp": 0.022852880065329373, + "file_setup": 0.10267018002923578 + }, + "file_size": 1416809, + "queue_time": "P0DT00H00M00.347236S", + "queue_time_sec": 0.347236, + "uploaded_file_name": "email.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125/code --output /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125 --c /forge/data/pods/zk-workers-compile-6858bfd795-8df8n/circuits/62b994f3-3460-46af-b5b1-4876175b117b_1707926161283125/code/./circuit.circom stdout: stderr: error[P1014]: The file @zk-email/zk-regex-circom/circuits/regex_helpers.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "c279a25a-2994-4c0d-9ce6-82a205d3a6c3", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-02-12T16:06:15.388Z", + "meta": {}, + "num_proofs": 3, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M19.113279S", + "compute_time_sec": 19.113279, + "compute_times": { + "total": 19.119710344821215, + "clean_up": 0.05678791180253029, + "file_setup": 0.07778294384479523, + "create_r1cs": 0.6835691910237074, + "create_wasm": 1.5261333975940943, + "save_results": 0.01109285093843937, + "get_r1cs_info": 0.002000190317630768, + "groth16_setup": 15.561696534976363, + "export_verification_key": 1.1593163777142763, + "download_trusted_setup_file": 0.04080592654645443 + }, + "file_size": 7081817, + "queue_time": "P0DT00H00M00.304946S", + "queue_time_sec": 0.304946, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 + }, + { + "circuit_id": "76c05c49-9d92-4af1-8ab4-6e3c9b4bd154", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-02-12T00:14:36.781Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M21.300025S", + "compute_time_sec": 21.300025, + "compute_times": { + "total": 21.306767147034407, + "clean_up": 0.2600619550794363, + "file_setup": 0.10280199348926544, + "create_r1cs": 0.7014120128005743, + "create_wasm": 1.4916918445378542, + "save_results": 0.018025938421487808, + "get_r1cs_info": 0.003770437091588974, + "groth16_setup": 15.514674112200737, + "export_verification_key": 1.5598135478794575, + "download_trusted_setup_file": 1.654065664857626 + }, + "file_size": 7081723, + "queue_time": "P0DT00H00M00.293132S", + "queue_time_sec": 0.293132, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 5554, + "num_outputs": 2, + "num_private_inputs": 42, + "num_public_inputs": 2 + }, + { + "circuit_id": "af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-02-12T00:12:50.904Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.311458S", + "compute_time_sec": 0.311458, + "compute_times": { + "total": 0.10177313163876534, + "file_setup": 0.08924846164882183, + "create_wasm": 0.011913193389773369 + }, + "file_size": 1806552, + "queue_time": "P0DT00H00M00.288724S", + "queue_time_sec": 0.288724, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/af4f6bd7-4ea4-4b77-af5d-0b9e7f1e89bc_1707696771192627/code/./circuits/semaphore.circom stdout: stderr: error[P1014]: The file /circuits/tree.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "4e252909-573e-499f-8d5b-1c7b35a18ff0", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-02-12T00:10:40.331Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.123483S", + "compute_time_sec": 0.123483, + "compute_times": { + "total": 0.10418374836444855, + "file_setup": 0.08240349031984806, + "create_wasm": 0.02108948677778244 + }, + "file_size": 907287, + "queue_time": "P0DT00H00M00.244690S", + "queue_time_sec": 0.24469, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-mclz6/circuits/4e252909-573e-499f-8d5b-1c7b35a18ff0_1707696640575299/code/./circuits/semaphore.circom stdout: stderr: error[P1014]: The file /circuits/tree.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "1e20027f-5159-4c7f-8fe0-03f12095c8dd", + "circuit_name": "hashchecker", + "project_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:51:12.364Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M36.887947S", + "compute_time_sec": 36.887947, + "compute_times": { + "total": 36.89425963815302, + "clean_up": 0.04403446055948734, + "file_setup": 29.98060936667025, + "create_r1cs": 0.3443223936483264, + "create_wasm": 1.05553247500211, + "save_results": 0.006293457001447678, + "get_r1cs_info": 0.000581374391913414, + "groth16_setup": 4.288356346078217, + "export_verification_key": 1.171438716351986, + "download_trusted_setup_file": 0.002127542160451412 + }, + "file_size": 4238536, + "queue_time": "P0DT00H00M00.257023S", + "queue_time_sec": 0.257023, + "uploaded_file_name": "hashchecker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "f1afc207-a57e-4cba-90b8-afffcc72ac6a", + "circuit_name": "hashchecker", + "project_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:35:47.834Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.242908S", + "compute_time_sec": 7.242908, + "compute_times": { + "total": 7.252888669259846, + "clean_up": 0.24440924916416407, + "file_setup": 0.10320598538964987, + "create_r1cs": 0.3493071682751179, + "create_wasm": 1.0848499182611704, + "save_results": 0.006677108816802502, + "get_r1cs_info": 0.0006677061319351196, + "groth16_setup": 4.277557077817619, + "export_verification_key": 1.1795741403475404, + "download_trusted_setup_file": 0.002051391638815403 + }, + "file_size": 4238546, + "queue_time": "P0DT00H00M00.315189S", + "queue_time_sec": 0.315189, + "uploaded_file_name": "hashchecker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "d7b77672-e62f-431e-a26c-4e5350ef2690", + "circuit_name": "hashchecker", + "project_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:32:24.516Z", + "meta": {}, + "num_proofs": 3, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.502453S", + "compute_time_sec": 8.502453, + "compute_times": { + "total": 8.5082988422364, + "clean_up": 0.24006511457264423, + "file_setup": 0.10109577886760235, + "create_r1cs": 0.374081764370203, + "create_wasm": 1.0719998348504305, + "save_results": 0.006332419812679291, + "get_r1cs_info": 0.0005895020440220833, + "groth16_setup": 4.342386241070926, + "export_verification_key": 1.097628473304212, + "download_trusted_setup_file": 1.2735503260046244 + }, + "file_size": 4238535, + "queue_time": "P0DT00H00M00.290802S", + "queue_time_sec": 0.290802, + "uploaded_file_name": "hashchecker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 297, + "num_outputs": 0, + "num_private_inputs": 4, + "num_public_inputs": 1 + }, + { + "circuit_id": "85337444-db6e-4c52-9ca5-fc4de2ba5ad2", + "circuit_name": "hashchecker", + "project_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:14:59.465Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.379245S", + "compute_time_sec": 0.379245, + "compute_times": { + "total": 0.10352941323071718, + "file_setup": 0.0858859121799469, + "create_wasm": 0.016125368885695934 + }, + "file_size": 1804057, + "queue_time": "P0DT00H00M00.225145S", + "queue_time_sec": 0.225145, + "uploaded_file_name": "hashchecker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/85337444-db6e-4c52-9ca5-fc4de2ba5ad2_1707678899689735/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "1a225d7f-5d24-4227-b8d8-291088158998", + "circuit_name": "hashchecker", + "project_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:09:18.022Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.300239S", + "compute_time_sec": 0.300239, + "compute_times": { + "total": 0.09953181259334087, + "file_setup": 0.08270685467869043, + "create_wasm": 0.01634138822555542 + }, + "file_size": 1803953, + "queue_time": "P0DT00H00M00.267199S", + "queue_time_sec": 0.267199, + "uploaded_file_name": "hashchecker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/1a225d7f-5d24-4227-b8d8-291088158998_1707678558288899/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "4df18c0a-0a2f-450d-92ce-c2233f127c12", + "circuit_name": "hashchecker", + "project_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T19:00:54.135Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.179718S", + "compute_time_sec": 0.179718, + "compute_times": { + "total": 0.10090719535946846, + "file_setup": 0.08464208338409662, + "create_wasm": 0.01588864903897047 + }, + "file_size": 1803921, + "queue_time": "P0DT00H00M00.251874S", + "queue_time_sec": 0.251874, + "uploaded_file_name": "hashchecker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/4df18c0a-0a2f-450d-92ce-c2233f127c12_1707678054387295/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9", + "circuit_name": "hashchecker", + "project_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T18:45:44.857Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.269437S", + "compute_time_sec": 0.269437, + "compute_times": { + "total": 0.10417102556675673, + "file_setup": 0.0870280647650361, + "create_wasm": 0.016761316917836666 + }, + "file_size": 1803870, + "queue_time": "P0DT00H00M00.229957S", + "queue_time_sec": 0.229957, + "uploaded_file_name": "hashchecker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ed227fe5-fbbd-4421-96e4-4dc09d1dd0e9_1707677145087418/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "ebd8727d-54d7-4ac4-9a84-ca04295107e4", + "circuit_name": "hashchecker", + "project_name": "hashchecker", + "circuit_type": "circom", + "date_created": "2024-02-11T18:44:01.720Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.119612S", + "compute_time_sec": 0.119612, + "compute_times": { + "total": 0.07268805895000696, + "file_setup": 0.056701790541410446, + "create_wasm": 0.015431713312864304 + }, + "file_size": 905050, + "queue_time": "P0DT00H00M00.258881S", + "queue_time_sec": 0.258881, + "uploaded_file_name": "hashchecker.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/ebd8727d-54d7-4ac4-9a84-ca04295107e4_1707677041978495/code/./circuits/calculate_hash.circom stdout: stderr: error[P1014]: The file /circomlib/circuits/poseidon_constants.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "5a859067-cd25-4c02-9377-b608995509a7", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-02-11T18:10:12.579Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.281287S", + "compute_time_sec": 0.281287, + "compute_times": { + "total": 0.11563524045050144, + "file_setup": 0.10166966635733843, + "create_wasm": 0.01360108982771635 + }, + "file_size": 1805983, + "queue_time": "P0DT00H00M00.305225S", + "queue_time_sec": 0.305225, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code/./circuits/semaphore.circom stdout: stderr: error[P1012]: InvalidToken { location: 76 }\n ┌─ '/forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/5a859067-cd25-4c02-9377-b608995509a7_1707675012884188/code/./circuits/semaphore.circom':4:9\n │\n4 │ include '//circuits/tree.circom';\n │ ^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "931c0e2f-b91c-4392-be0d-4c26d804d2de", + "circuit_name": "semaphore-1", + "project_name": "semaphore-1", + "circuit_type": "circom", + "date_created": "2024-02-11T18:09:21.301Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.129729S", + "compute_time_sec": 0.129729, + "compute_times": { + "total": 0.0997195653617382, + "file_setup": 0.08716154284775257, + "create_wasm": 0.01209271140396595 + }, + "file_size": 1805970, + "queue_time": "P0DT00H00M00.324444S", + "queue_time_sec": 0.324444, + "uploaded_file_name": "semaphore.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 -l /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code --output /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965 --wasm /forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code/./circuits/semaphore.circom stdout: stderr: error[P1012]: InvalidToken { location: 76 }\n ┌─ '/forge/data/pods/zk-workers-compile-76bbd84fb5-qs6mw/circuits/931c0e2f-b91c-4392-be0d-4c26d804d2de_1707674961625965/code/./circuits/semaphore.circom':4:9\n │\n4 │ include '//circuits/tree.circom';\n │ ^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "1ed9ab2d-ed52-4482-8280-ee018eb5fb18", + "circuit_name": "circom-circuit", + "project_name": "circom-circuit", + "circuit_type": "circom", + "date_created": "2024-01-31T22:08:05.475Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.909178S", + "compute_time_sec": 6.909178, + "compute_times": { + "total": 6.960774548351765, + "clean_up": 0.005624564364552498, + "create_cpp": 0.04884001612663269, + "file_setup": 0.23423208110034466, + "compile_cpp": 4.481184393167496, + "create_r1cs": 0.019831592217087746, + "save_results": 0.003675384446978569, + "get_r1cs_info": 0.0003577694296836853, + "groth16_setup": 1.123554177582264, + "export_verification_key": 1.0419799592345953, + "download_trusted_setup_file": 0.0011759810149669647 + }, + "file_size": 1651141, + "queue_time": "P0DT00H00M24.976953S", + "queue_time_sec": 24.976953, + "uploaded_file_name": "circom-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "45c6f90e-765d-41dd-8bbe-7f5c9270f39a", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:04.723Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.286136S", + "compute_time_sec": 7.286136, + "compute_times": { + "total": 7.340654090046883, + "clean_up": 0.0009148658718913794, + "create_cpp": 0.04542793915607035, + "file_setup": 0.23204711498692632, + "compile_cpp": 4.680376983946189, + "create_r1cs": 0.008409275906160474, + "save_results": 0.0033105541951954365, + "get_r1cs_info": 0.0003685750998556614, + "groth16_setup": 1.178457418922335, + "export_verification_key": 1.1900099229533225, + "download_trusted_setup_file": 0.000988946994766593 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M38.074183S", + "queue_time_sec": 38.074183, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "8d782036-8d14-4bcb-a9f6-a5e04a312722", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:04.122Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.463866S", + "compute_time_sec": 7.463866, + "compute_times": { + "total": 7.523294999962673, + "clean_up": 0.0007766569033265114, + "create_cpp": 0.04011468309909105, + "file_setup": 0.2518389639444649, + "compile_cpp": 4.806413288926706, + "create_r1cs": 0.008677670964971185, + "save_results": 0.0031781040597707033, + "get_r1cs_info": 0.00039803609251976013, + "groth16_setup": 1.1818688770290464, + "export_verification_key": 1.2287184570450336, + "download_trusted_setup_file": 0.0010086549445986748 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M37.680306S", + "queue_time_sec": 37.680306, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "cc692834-8754-4e37-ab2f-a32714ee7314", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:03.780Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.480065S", + "compute_time_sec": 7.480065, + "compute_times": { + "total": 7.537460318999365, + "clean_up": 0.0008328610565513372, + "create_cpp": 0.03915940411388874, + "file_setup": 0.2353337057866156, + "compile_cpp": 4.872832479886711, + "create_r1cs": 0.009635194204747677, + "save_results": 0.003330645151436329, + "get_r1cs_info": 0.00040896888822317123, + "groth16_setup": 1.243939558044076, + "export_verification_key": 1.1305532888509333, + "download_trusted_setup_file": 0.0010688810143619776 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M33.511443S", + "queue_time_sec": 33.511443, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d065c8e9-c368-4544-8b63-5913596abf15", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:03.625Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.465790S", + "compute_time_sec": 7.46579, + "compute_times": { + "total": 7.517380404053256, + "clean_up": 0.000841652974486351, + "create_cpp": 0.04037469998002052, + "file_setup": 0.21061871387064457, + "compile_cpp": 4.7562680810224265, + "create_r1cs": 0.008348200935870409, + "save_results": 0.0034994680900126696, + "get_r1cs_info": 0.000424881000071764, + "groth16_setup": 1.2855071290396154, + "export_verification_key": 1.210078198928386, + "download_trusted_setup_file": 0.0010237020906060934 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M32.017107S", + "queue_time_sec": 32.017107, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "72b5eac6-8bec-47d1-9577-dd98e7dc909e", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:02.471Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.143051S", + "compute_time_sec": 7.143051, + "compute_times": { + "total": 7.1952535710297525, + "clean_up": 0.0009264149703085423, + "create_cpp": 0.037378153996542096, + "file_setup": 0.22291689622215927, + "compile_cpp": 4.493842450901866, + "create_r1cs": 0.00868003792129457, + "save_results": 0.003541851881891489, + "get_r1cs_info": 0.0003536711446940899, + "groth16_setup": 1.202652727952227, + "export_verification_key": 1.2237500881310552, + "download_trusted_setup_file": 0.0009900499135255814 + }, + "file_size": 225450, + "queue_time": "P0DT00H00M32.071917S", + "queue_time_sec": 32.071917, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "4ff80c3d-c769-432e-8292-6ce3fd19eff0", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:02.067Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.529084S", + "compute_time_sec": 7.529084, + "compute_times": { + "total": 7.584393135970458, + "clean_up": 0.00083908811211586, + "create_cpp": 0.04151515499688685, + "file_setup": 0.23193758307024837, + "compile_cpp": 4.9528708211146295, + "create_r1cs": 0.008621205808594823, + "save_results": 0.0033709488343447447, + "get_r1cs_info": 0.0004654980730265379, + "groth16_setup": 1.127253663027659, + "export_verification_key": 1.2159365471452475, + "download_trusted_setup_file": 0.0011964899022132158 + }, + "file_size": 225450, + "queue_time": "P0DT00H00M30.973415S", + "queue_time_sec": 30.973415, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "fd0f6a9e-8904-400a-8f1b-b60fb56adc6a", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:01.892Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.968285S", + "compute_time_sec": 6.968285, + "compute_times": { + "total": 7.020302023971453, + "clean_up": 0.0007189519237726927, + "create_cpp": 0.039091327926144004, + "file_setup": 0.22075876407325268, + "compile_cpp": 4.478542160009965, + "create_r1cs": 0.008031236007809639, + "save_results": 0.0033459621481597424, + "get_r1cs_info": 0.00031445594504475594, + "groth16_setup": 1.1534762841183692, + "export_verification_key": 1.1147591178305447, + "download_trusted_setup_file": 0.000989275984466076 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M24.589933S", + "queue_time_sec": 24.589933, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "09969b6e-61ad-443d-b5f1-77ff10de5b67", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:01.304Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-prove-circuit" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.959223S", + "compute_time_sec": 6.959223, + "compute_times": { + "total": 7.0112608759664, + "clean_up": 0.0008735461160540581, + "create_cpp": 0.038755591958761215, + "file_setup": 0.24885913101024926, + "compile_cpp": 4.36299676517956, + "create_r1cs": 0.00803148397244513, + "save_results": 0.01730395178310573, + "get_r1cs_info": 0.0003368018660694361, + "groth16_setup": 1.1180529070552438, + "export_verification_key": 1.2148506320081651, + "download_trusted_setup_file": 0.0009600170888006687 + }, + "file_size": 225450, + "queue_time": "P0DT00H00M17.111301S", + "queue_time_sec": 17.111301, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "105556d7-10b8-455e-8999-d2b31121052d", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:01.000Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.949886S", + "compute_time_sec": 6.949886, + "compute_times": { + "total": 7.000236368039623, + "clean_up": 0.0007571689784526825, + "create_cpp": 0.03813181212171912, + "file_setup": 0.39067235100083053, + "compile_cpp": 4.379259012872353, + "create_r1cs": 0.008045257069170475, + "save_results": 0.037871989188715816, + "get_r1cs_info": 0.0003408279735594988, + "groth16_setup": 1.0681434420403093, + "export_verification_key": 1.0757975298911333, + "download_trusted_setup_file": 0.0009711629245430231 + }, + "file_size": 225416, + "queue_time": "P0DT00H00M01.134467S", + "queue_time_sec": 1.134467, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c1f59258-600e-440b-8bea-777ff1a7a1ae", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-31T18:15:00.922Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-all-circuit-proofs" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.086134S", + "compute_time_sec": 7.086134, + "compute_times": { + "total": 7.139805332990363, + "clean_up": 0.0007637820672243834, + "create_cpp": 0.040777466958388686, + "file_setup": 0.22701866691932082, + "compile_cpp": 4.5694026600103825, + "create_r1cs": 0.008620185079053044, + "save_results": 0.009906678926199675, + "get_r1cs_info": 0.0005167280323803425, + "groth16_setup": 1.0815790109336376, + "export_verification_key": 1.1996698069851846, + "download_trusted_setup_file": 0.0012109570670872927 + }, + "file_size": 225450, + "queue_time": "P0DT00H00M09.283956S", + "queue_time_sec": 9.283956, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "7c994a90-a43d-4469-ab98-ebeb37959a50", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2024-01-17T00:39:38.679Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.550840S", + "compute_time_sec": 7.55084, + "compute_times": { + "total": 7.629153113812208, + "clean_up": 0.011455003172159195, + "create_cpp": 0.054636724293231964, + "file_setup": 0.31103159487247467, + "compile_cpp": 4.492543734610081, + "create_r1cs": 0.0336969792842865, + "save_results": 0.005911210551857948, + "get_r1cs_info": 0.0004208497703075409, + "groth16_setup": 1.3556907046586275, + "export_verification_key": 1.3620027527213097, + "download_trusted_setup_file": 0.0013344846665859222 + }, + "file_size": 1650629, + "queue_time": "P0DT00H00M15.012343S", + "queue_time_sec": 15.012343, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "f4e09c80-ea3e-4a75-a0ae-5528596f8f44", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:27:15.352Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.078009S", + "compute_time_sec": 8.078009, + "compute_times": { + "total": 8.165162647143006, + "clean_up": 0.001927914097905159, + "create_cpp": 0.05209779180586338, + "file_setup": 0.2735048495233059, + "compile_cpp": 4.798323042690754, + "create_r1cs": 0.018848145380616188, + "save_results": 0.00658784992992878, + "get_r1cs_info": 0.0008379388600587845, + "groth16_setup": 1.6222364120185375, + "export_verification_key": 1.38789046369493, + "download_trusted_setup_file": 0.0024561677128076553 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.054530S", + "queue_time_sec": 1.05453, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0661770a-d4a7-4738-a0b3-df9c9299beb8", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:27:14.083Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.904210S", + "compute_time_sec": 7.90421, + "compute_times": { + "total": 7.990685863420367, + "clean_up": 0.0017737876623868942, + "create_cpp": 0.04771621339023113, + "file_setup": 0.2793459966778755, + "compile_cpp": 4.619792276993394, + "create_r1cs": 0.00932052917778492, + "save_results": 0.006265198811888695, + "get_r1cs_info": 0.0004815235733985901, + "groth16_setup": 1.4397705420851707, + "export_verification_key": 1.584412407130003, + "download_trusted_setup_file": 0.0015385709702968597 + }, + "file_size": 225450, + "queue_time": "P0DT00H00M01.148767S", + "queue_time_sec": 1.148767, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "4d725eb8-21ba-4389-9bad-06aab98177bc", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:27:14.042Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.840020S", + "compute_time_sec": 7.84002, + "compute_times": { + "total": 7.916158145293593, + "clean_up": 0.001588582992553711, + "create_cpp": 0.05656779184937477, + "file_setup": 0.2618618682026863, + "compile_cpp": 4.655229337513447, + "create_r1cs": 0.010038148611783981, + "save_results": 0.005318811163306236, + "get_r1cs_info": 0.0004153270274400711, + "groth16_setup": 1.3863549754023552, + "export_verification_key": 1.5370171926915646, + "download_trusted_setup_file": 0.0013035386800765991 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.103501S", + "queue_time_sec": 1.103501, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "71009985-54d8-46cf-92c7-c5a52d51cb14", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:26:26.125Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.895332S", + "compute_time_sec": 7.895332, + "compute_times": { + "total": 7.985105384141207, + "clean_up": 0.0017092283815145493, + "create_cpp": 0.05560790188610554, + "file_setup": 0.27359912544488907, + "compile_cpp": 4.84467164054513, + "create_r1cs": 0.01020035706460476, + "save_results": 0.00596289336681366, + "get_r1cs_info": 0.0003344062715768814, + "groth16_setup": 1.3516457378864288, + "export_verification_key": 1.4395998753607273, + "download_trusted_setup_file": 0.001010250300168991 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.097711S", + "queue_time_sec": 1.097711, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "28e9927d-a35f-4c65-86dc-d1557d5e5929", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T18:26:25.495Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.731496S", + "compute_time_sec": 7.731496, + "compute_times": { + "total": 7.827601557597518, + "clean_up": 0.002000821754336357, + "create_cpp": 0.04701829329133034, + "file_setup": 0.2621183265000582, + "compile_cpp": 4.725081695243716, + "create_r1cs": 0.011297162622213364, + "save_results": 0.005976244807243347, + "get_r1cs_info": 0.0006684809923171997, + "groth16_setup": 1.4255939163267612, + "export_verification_key": 1.3449707236140966, + "download_trusted_setup_file": 0.0024210847914218903 + }, + "file_size": 225430, + "queue_time": "P0DT00H00M01.269570S", + "queue_time_sec": 1.26957, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "ab5ac8cd-1c1e-4e91-b101-5a8a803643e2", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:31:55.438Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.586921S", + "compute_time_sec": 7.586921, + "compute_times": { + "total": 7.663304785266519, + "clean_up": 0.0015752892941236496, + "create_cpp": 0.049899373203516006, + "file_setup": 0.22959892638027668, + "compile_cpp": 4.780468979850411, + "create_r1cs": 0.017419403418898582, + "save_results": 0.0054653361439704895, + "get_r1cs_info": 0.0007719267159700394, + "groth16_setup": 1.2644738126546144, + "export_verification_key": 1.310561291873455, + "download_trusted_setup_file": 0.0026084203273057938 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.132337S", + "queue_time_sec": 1.132337, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "eecfde78-02ac-43e4-8bab-05b248ee5ba4", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:27:56.593Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.801205S", + "compute_time_sec": 7.801205, + "compute_times": { + "total": 7.875548103824258, + "clean_up": 0.0017300937324762344, + "create_cpp": 0.05396237596869469, + "file_setup": 0.2385635208338499, + "compile_cpp": 4.6406055726110935, + "create_r1cs": 0.016733812168240547, + "save_results": 0.004983868449926376, + "get_r1cs_info": 0.0006270240992307663, + "groth16_setup": 1.3868273310363293, + "export_verification_key": 1.528601661324501, + "download_trusted_setup_file": 0.002437632530927658 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.098988S", + "queue_time_sec": 1.098988, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6434e7e2-faf6-4602-9da1-a4b0095c5e80", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:27:42.490Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.531215S", + "compute_time_sec": 7.531215, + "compute_times": { + "total": 7.6094263680279255, + "clean_up": 0.001713564619421959, + "create_cpp": 0.04710027575492859, + "file_setup": 0.23515290580689907, + "compile_cpp": 4.696669522672892, + "create_r1cs": 0.017408769577741623, + "save_results": 0.005742281675338745, + "get_r1cs_info": 0.0006468463689088821, + "groth16_setup": 1.3201909139752388, + "export_verification_key": 1.2817781921476126, + "download_trusted_setup_file": 0.0024629440158605576 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.133009S", + "queue_time_sec": 1.133009, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6e118e95-38fb-41a1-b179-9ecdc2682886", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:27:26.943Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.713700S", + "compute_time_sec": 7.7137, + "compute_times": { + "total": 7.7915890868753195, + "clean_up": 0.001603648066520691, + "create_cpp": 0.04629753343760967, + "file_setup": 0.2314635906368494, + "compile_cpp": 4.7291872799396515, + "create_r1cs": 0.016094380989670753, + "save_results": 0.005229661241173744, + "get_r1cs_info": 0.0004699360579252243, + "groth16_setup": 1.3847032357007265, + "export_verification_key": 1.3747948426753283, + "download_trusted_setup_file": 0.0012649912387132645 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.176030S", + "queue_time_sec": 1.17603, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "e4a9ebed-456f-4726-9d5f-7eece0925920", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:24:25.201Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.782942S", + "compute_time_sec": 7.782942, + "compute_times": { + "total": 7.858149649575353, + "clean_up": 0.0016285404562950134, + "create_cpp": 0.04751185514032841, + "file_setup": 0.22963756695389748, + "compile_cpp": 4.810557749122381, + "create_r1cs": 0.011191016063094139, + "save_results": 0.0053499843925237656, + "get_r1cs_info": 0.0006842408329248428, + "groth16_setup": 1.305834548547864, + "export_verification_key": 1.4425791203975677, + "download_trusted_setup_file": 0.0027836784720420837 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.192228S", + "queue_time_sec": 1.192228, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0e761d1e-15cc-414e-9ec4-cc0771b7e28b", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:24:08.702Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.712942S", + "compute_time_sec": 7.712942, + "compute_times": { + "total": 7.788311326876283, + "clean_up": 0.0015964601188898087, + "create_cpp": 0.048168059438467026, + "file_setup": 0.24294559471309185, + "compile_cpp": 4.80493832193315, + "create_r1cs": 0.01979799196124077, + "save_results": 0.005484664812684059, + "get_r1cs_info": 0.0007523689419031143, + "groth16_setup": 1.360052939504385, + "export_verification_key": 1.3015912808477879, + "download_trusted_setup_file": 0.00248897448182106 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.222064S", + "queue_time_sec": 1.222064, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "f1947dcc-fb1d-426e-b503-2672cd5a02d3", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:23:55.055Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.504987S", + "compute_time_sec": 7.504987, + "compute_times": { + "total": 7.582275737076998, + "clean_up": 0.00203564390540123, + "create_cpp": 0.04740658402442932, + "file_setup": 0.2326672412455082, + "compile_cpp": 4.5253369603306055, + "create_r1cs": 0.015371032059192657, + "save_results": 0.0063849929720163345, + "get_r1cs_info": 0.0003808550536632538, + "groth16_setup": 1.3611575067043304, + "export_verification_key": 1.3897777944803238, + "download_trusted_setup_file": 0.0012431517243385315 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.111203S", + "queue_time_sec": 1.111203, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "59073bbb-5975-4037-92e2-3afbe768b179", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:23:31.285Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.404341S", + "compute_time_sec": 7.404341, + "compute_times": { + "total": 7.481531243771315, + "clean_up": 0.001758268103003502, + "create_cpp": 0.054409828037023544, + "file_setup": 0.228825144469738, + "compile_cpp": 4.561935219913721, + "create_r1cs": 0.01824786141514778, + "save_results": 0.005484595894813538, + "get_r1cs_info": 0.000652119517326355, + "groth16_setup": 1.3237749002873898, + "export_verification_key": 1.2835038527846336, + "download_trusted_setup_file": 0.0024792589247226715 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.164668S", + "queue_time_sec": 1.164668, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c38900d0-5400-4f89-bd51-2203da0a945b", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:23:11.647Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.506243S", + "compute_time_sec": 7.506243, + "compute_times": { + "total": 7.5825384352356195, + "clean_up": 0.0020943544805049896, + "create_cpp": 0.055948369204998016, + "file_setup": 0.2336848620325327, + "compile_cpp": 4.572340337559581, + "create_r1cs": 0.011611813679337502, + "save_results": 0.006018133834004402, + "get_r1cs_info": 0.000943819060921669, + "groth16_setup": 1.345878291875124, + "export_verification_key": 1.3496504835784435, + "download_trusted_setup_file": 0.003846803680062294 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.123872S", + "queue_time_sec": 1.123872, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "d615d23b-4c2c-4d30-b994-d655731e90cd", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:21:38.135Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.490694S", + "compute_time_sec": 7.490694, + "compute_times": { + "total": 7.569987336173654, + "clean_up": 0.002130907028913498, + "create_cpp": 0.04748098365962505, + "file_setup": 0.2508866246789694, + "compile_cpp": 4.549122573807836, + "create_r1cs": 0.01635313406586647, + "save_results": 0.006561141461133957, + "get_r1cs_info": 0.0007531233131885529, + "groth16_setup": 1.3041542451828718, + "export_verification_key": 1.389599822461605, + "download_trusted_setup_file": 0.002447204664349556 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.179116S", + "queue_time_sec": 1.179116, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "babe9119-f39a-4b61-accc-38c16ba6c6c4", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:21:25.337Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.714617S", + "compute_time_sec": 7.714617, + "compute_times": { + "total": 7.78945274092257, + "clean_up": 0.0014195535331964493, + "create_cpp": 0.0532410591840744, + "file_setup": 0.2293473482131958, + "compile_cpp": 4.6692238971591, + "create_r1cs": 0.011476732790470123, + "save_results": 0.0056864432990550995, + "get_r1cs_info": 0.0009230468422174454, + "groth16_setup": 1.4699061587452888, + "export_verification_key": 1.3452017772942781, + "download_trusted_setup_file": 0.0025169849395751953 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.109203S", + "queue_time_sec": 1.109203, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5ea5c750-afb9-46ff-9bae-cbd1566e7357", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:21:07.305Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.675740S", + "compute_time_sec": 7.67574, + "compute_times": { + "total": 7.751045668497682, + "clean_up": 0.0018131695687770844, + "create_cpp": 0.04765470325946808, + "file_setup": 0.24081012606620789, + "compile_cpp": 4.558540068566799, + "create_r1cs": 0.01800389215350151, + "save_results": 0.005974184721708298, + "get_r1cs_info": 0.0006712991744279861, + "groth16_setup": 1.373840706422925, + "export_verification_key": 1.500656010583043, + "download_trusted_setup_file": 0.002558337524533272 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.129433S", + "queue_time_sec": 1.129433, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c6fbd6ce-f956-45a4-a0e9-75daf8166515", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:19:55.212Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.062178S", + "compute_time_sec": 8.062178, + "compute_times": { + "total": 8.142503958195448, + "clean_up": 0.0018021930009126663, + "create_cpp": 0.04863681085407734, + "file_setup": 0.23515266925096512, + "compile_cpp": 5.073512123897672, + "create_r1cs": 0.018286654725670815, + "save_results": 0.004714170470833778, + "get_r1cs_info": 0.0007165037095546722, + "groth16_setup": 1.3629947770386934, + "export_verification_key": 1.3937593009322882, + "download_trusted_setup_file": 0.0024403519928455353 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.149423S", + "queue_time_sec": 1.149423, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "2b408882-c232-4fd6-b384-585e20a6828b", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:18:49.431Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.693335S", + "compute_time_sec": 7.693335, + "compute_times": { + "total": 7.781858703121543, + "clean_up": 0.0017208773642778397, + "create_cpp": 0.05256185121834278, + "file_setup": 0.2557890061289072, + "compile_cpp": 4.588302677497268, + "create_r1cs": 0.010025406256318092, + "save_results": 0.0073493290692567825, + "get_r1cs_info": 0.0005155783146619797, + "groth16_setup": 1.4648161549121141, + "export_verification_key": 1.3988297637552023, + "download_trusted_setup_file": 0.0014446470886468887 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.116293S", + "queue_time_sec": 1.116293, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "315b9559-c461-49ab-b089-885151347107", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:18:35.546Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.469497S", + "compute_time_sec": 7.469497, + "compute_times": { + "total": 7.547948880121112, + "clean_up": 0.0015904363244771957, + "create_cpp": 0.0542209018021822, + "file_setup": 0.23366319201886654, + "compile_cpp": 4.586157588288188, + "create_r1cs": 0.018297061324119568, + "save_results": 0.005786450579762459, + "get_r1cs_info": 0.0006671342998743057, + "groth16_setup": 1.364309385418892, + "export_verification_key": 1.2802996914833784, + "download_trusted_setup_file": 0.002457818016409874 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.248019S", + "queue_time_sec": 1.248019, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "65877a60-2ae1-4739-9841-d9030724c6be", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:17:44.931Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.473321S", + "compute_time_sec": 7.473321, + "compute_times": { + "total": 7.547661663964391, + "clean_up": 0.000894695520401001, + "create_cpp": 0.05381825938820839, + "file_setup": 0.24185010977089405, + "compile_cpp": 4.524175513535738, + "create_r1cs": 0.017902396619319916, + "save_results": 0.004841597750782967, + "get_r1cs_info": 0.0008537471294403076, + "groth16_setup": 1.3410304505378008, + "export_verification_key": 1.3593134097754955, + "download_trusted_setup_file": 0.0025420039892196655 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.119777S", + "queue_time_sec": 1.119777, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1d320216-2e2b-4bab-a53d-bf1f5c2aa748", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:16:28.531Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.690520S", + "compute_time_sec": 7.69052, + "compute_times": { + "total": 7.770463544875383, + "clean_up": 0.0014936216175556183, + "create_cpp": 0.05430406704545021, + "file_setup": 0.23710034973919392, + "compile_cpp": 4.83283169940114, + "create_r1cs": 0.019483311101794243, + "save_results": 0.0048837121576070786, + "get_r1cs_info": 0.0006661657243967056, + "groth16_setup": 1.3555313758552074, + "export_verification_key": 1.2612487897276878, + "download_trusted_setup_file": 0.0024483725428581238 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M05.453395S", + "queue_time_sec": 5.453395, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "5ef858ca-61e8-4d2b-a44c-7648541e3083", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:16:22.368Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.866076S", + "compute_time_sec": 7.866076, + "compute_times": { + "total": 7.941894210875034, + "clean_up": 0.0015988927334547043, + "create_cpp": 0.047808632254600525, + "file_setup": 0.27344413474202156, + "compile_cpp": 4.95066586881876, + "create_r1cs": 0.018682880327105522, + "save_results": 0.005130548030138016, + "get_r1cs_info": 0.0007092785090208054, + "groth16_setup": 1.3249204363673925, + "export_verification_key": 1.3161130715161562, + "download_trusted_setup_file": 0.0024131685495376587 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M02.535538S", + "queue_time_sec": 2.535538, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "e758cd22-69a0-47cd-94bd-ba6bef3abf15", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:16:14.715Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.791801S", + "compute_time_sec": 7.791801, + "compute_times": { + "total": 7.869745476171374, + "clean_up": 0.001745712012052536, + "create_cpp": 0.05209941044449806, + "file_setup": 0.2489724848419428, + "compile_cpp": 4.845416411757469, + "create_r1cs": 0.019992178305983543, + "save_results": 0.005489939823746681, + "get_r1cs_info": 0.0008604265749454498, + "groth16_setup": 1.321467338129878, + "export_verification_key": 1.3704753294587135, + "download_trusted_setup_file": 0.002767615020275116 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.134289S", + "queue_time_sec": 1.134289, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "faf304c4-d22c-4116-ad67-01983bac2285", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:13:40.405Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.405829S", + "compute_time_sec": 7.405829, + "compute_times": { + "total": 7.476599719375372, + "clean_up": 0.0016632992774248123, + "create_cpp": 0.047042084857821465, + "file_setup": 0.2487345952540636, + "compile_cpp": 4.6313931327313185, + "create_r1cs": 0.015436878427863121, + "save_results": 0.0051026009023189545, + "get_r1cs_info": 0.0007460527122020721, + "groth16_setup": 1.2485730070620775, + "export_verification_key": 1.274957099929452, + "download_trusted_setup_file": 0.002432204782962799 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.131337S", + "queue_time_sec": 1.131337, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "b1500d6d-b1c0-438e-b090-8fac9563ec1b", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:13:12.201Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.489214S", + "compute_time_sec": 7.489214, + "compute_times": { + "total": 7.565977169200778, + "clean_up": 0.0016220677644014359, + "create_cpp": 0.0601615309715271, + "file_setup": 0.23689182102680206, + "compile_cpp": 4.628598712384701, + "create_r1cs": 0.01757240854203701, + "save_results": 0.005794510245323181, + "get_r1cs_info": 0.0007582679390907288, + "groth16_setup": 1.3360584639012814, + "export_verification_key": 1.2756301537156105, + "download_trusted_setup_file": 0.0024445243179798126 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.146208S", + "queue_time_sec": 1.146208, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c2fc3030-526d-4823-baea-bd372f474090", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:11:41.174Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.580861S", + "compute_time_sec": 7.580861, + "compute_times": { + "total": 7.656488731503487, + "clean_up": 0.0016867052763700485, + "create_cpp": 0.04802015610039234, + "file_setup": 0.24031525664031506, + "compile_cpp": 4.603576384484768, + "create_r1cs": 0.016298340633511543, + "save_results": 0.005427641794085503, + "get_r1cs_info": 0.0008495114743709564, + "groth16_setup": 1.44757186062634, + "export_verification_key": 1.2892759256064892, + "download_trusted_setup_file": 0.0029640905559062958 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.097627S", + "queue_time_sec": 1.097627, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "9763f817-302a-41f5-85d5-8c4f5488ebce", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:06:12.999Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.468363S", + "compute_time_sec": 7.468363, + "compute_times": { + "total": 7.544480819255114, + "clean_up": 0.0016008112579584122, + "create_cpp": 0.05341379716992378, + "file_setup": 0.22887434996664524, + "compile_cpp": 4.706471795216203, + "create_r1cs": 0.01654653809964657, + "save_results": 0.006104299798607826, + "get_r1cs_info": 0.0004962123930454254, + "groth16_setup": 1.2300675436854362, + "export_verification_key": 1.299116501584649, + "download_trusted_setup_file": 0.0012989863753318787 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.143003S", + "queue_time_sec": 1.143003, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "73333456-f100-48c2-8da1-e1b036377890", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:05:23.917Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.759975S", + "compute_time_sec": 7.759975, + "compute_times": { + "total": 7.83847594819963, + "clean_up": 0.001688338816165924, + "create_cpp": 0.04832325503230095, + "file_setup": 0.2314634695649147, + "compile_cpp": 4.819877410307527, + "create_r1cs": 0.015260979533195496, + "save_results": 0.006293922662734985, + "get_r1cs_info": 0.0006519351154565811, + "groth16_setup": 1.3941991496831179, + "export_verification_key": 1.3179172277450562, + "download_trusted_setup_file": 0.0024711433798074722 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.104250S", + "queue_time_sec": 1.10425, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "c7d81255-de1e-4e97-a209-73b49b9e9da4", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:04:56.095Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.406479S", + "compute_time_sec": 7.406479, + "compute_times": { + "total": 7.483620099723339, + "clean_up": 0.001823868602514267, + "create_cpp": 0.045437244698405266, + "file_setup": 0.24590439908206463, + "compile_cpp": 4.595620075240731, + "create_r1cs": 0.016566921025514603, + "save_results": 0.005170263350009918, + "get_r1cs_info": 0.00036842189729213715, + "groth16_setup": 1.3206052239984274, + "export_verification_key": 1.2503768727183342, + "download_trusted_setup_file": 0.0012859292328357697 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.177252S", + "queue_time_sec": 1.177252, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "0dda6aaa-d9dc-46ef-b188-2ac4327367b2", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:02:24.098Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.616668S", + "compute_time_sec": 7.616668, + "compute_times": { + "total": 7.693107321858406, + "clean_up": 0.0016501452773809433, + "create_cpp": 0.05231943354010582, + "file_setup": 0.23242460750043392, + "compile_cpp": 4.745099242776632, + "create_r1cs": 0.019039543345570564, + "save_results": 0.0055495090782642365, + "get_r1cs_info": 0.0005333274602890015, + "groth16_setup": 1.285587765276432, + "export_verification_key": 1.3491349909454584, + "download_trusted_setup_file": 0.0012811962515115738 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.109472S", + "queue_time_sec": 1.109472, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "71d53b72-8c92-4ac2-9e80-39a8e1e703b7", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:01:40.573Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.484601S", + "compute_time_sec": 7.484601, + "compute_times": { + "total": 7.560129789635539, + "clean_up": 0.0016574747860431671, + "create_cpp": 0.04680110327899456, + "file_setup": 0.23556585423648357, + "compile_cpp": 4.649155827239156, + "create_r1cs": 0.0172688327729702, + "save_results": 0.0043340642005205154, + "get_r1cs_info": 0.0007321778684854507, + "groth16_setup": 1.310708336532116, + "export_verification_key": 1.2910060994327068, + "download_trusted_setup_file": 0.002450576052069664 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.111989S", + "queue_time_sec": 1.111989, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "6d875a79-65d5-406e-81e0-cd220fd3ffba", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:01:12.249Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.651112S", + "compute_time_sec": 7.651112, + "compute_times": { + "total": 7.727200584486127, + "clean_up": 0.0017795618623495102, + "create_cpp": 0.05026000365614891, + "file_setup": 0.2426721192896366, + "compile_cpp": 4.745914597064257, + "create_r1cs": 0.010544411838054657, + "save_results": 0.006228795275092125, + "get_r1cs_info": 0.0007463283836841583, + "groth16_setup": 1.2904645502567291, + "export_verification_key": 1.375608079135418, + "download_trusted_setup_file": 0.002477342262864113 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.123557S", + "queue_time_sec": 1.123557, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "71a278be-9aff-4ef7-aee1-d990f6d15189", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T16:00:46.395Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.560954S", + "compute_time_sec": 7.560954, + "compute_times": { + "total": 7.63792067207396, + "clean_up": 0.0011309515684843063, + "create_cpp": 0.05688653700053692, + "file_setup": 0.24240840040147305, + "compile_cpp": 4.653197390958667, + "create_r1cs": 0.01638108491897583, + "save_results": 0.005740107968449593, + "get_r1cs_info": 0.0008277762681245804, + "groth16_setup": 1.3475805260241032, + "export_verification_key": 1.3108154106885195, + "download_trusted_setup_file": 0.0024681556969881058 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.118023S", + "queue_time_sec": 1.118023, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "10ebc2d9-b8dd-4424-bad5-9c585a09c0c5", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:59:57.004Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.474006S", + "compute_time_sec": 7.474006, + "compute_times": { + "total": 7.551057329401374, + "clean_up": 0.0015815366059541702, + "create_cpp": 0.04650958999991417, + "file_setup": 0.2340244445949793, + "compile_cpp": 4.627846229821444, + "create_r1cs": 0.01713145151734352, + "save_results": 0.005708448588848114, + "get_r1cs_info": 0.0004803799092769623, + "groth16_setup": 1.2327740285545588, + "export_verification_key": 1.3827583715319633, + "download_trusted_setup_file": 0.001740090548992157 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.139430S", + "queue_time_sec": 1.13943, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "4b92a35a-e6f0-4f55-a632-c209333be056", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:59:11.428Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.631306S", + "compute_time_sec": 7.631306, + "compute_times": { + "total": 7.710235442966223, + "clean_up": 0.002034531906247139, + "create_cpp": 0.04852190800011158, + "file_setup": 0.24500983953475952, + "compile_cpp": 4.704880395904183, + "create_r1cs": 0.010721936821937561, + "save_results": 0.0055764298886060715, + "get_r1cs_info": 0.0006168503314256668, + "groth16_setup": 1.448454624041915, + "export_verification_key": 1.2422269843518734, + "download_trusted_setup_file": 0.0016173608601093292 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.386075S", + "queue_time_sec": 1.386075, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "29a6aa57-0453-467a-9acb-2295393d93c4", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:58:05.906Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.838875S", + "compute_time_sec": 7.838875, + "compute_times": { + "total": 7.916816979646683, + "clean_up": 0.0017937906086444855, + "create_cpp": 0.04604017175734043, + "file_setup": 0.25198566168546677, + "compile_cpp": 4.960162149742246, + "create_r1cs": 0.017025411128997803, + "save_results": 0.006269412115216255, + "get_r1cs_info": 0.0005705077201128006, + "groth16_setup": 1.3184205926954746, + "export_verification_key": 1.312853867188096, + "download_trusted_setup_file": 0.0013548657298088074 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M01.136460S", + "queue_time_sec": 1.13646, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "173cbf3c-0a46-440a-9e99-c883ed3e174f", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_type": "circom", + "date_created": "2024-01-14T15:10:36.167Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-browser-file-array" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.494759S", + "compute_time_sec": 7.494759, + "compute_times": { + "total": 7.577943356707692, + "clean_up": 0.0015942566096782684, + "create_cpp": 0.046944042667746544, + "file_setup": 0.23811103031039238, + "compile_cpp": 4.708118129521608, + "create_r1cs": 0.01638900674879551, + "save_results": 0.00562669150531292, + "get_r1cs_info": 0.0006911307573318481, + "groth16_setup": 1.2832315117120743, + "export_verification_key": 1.2741688843816519, + "download_trusted_setup_file": 0.0024611055850982666 + }, + "file_size": 225418, + "queue_time": "P0DT00H00M15.661842S", + "queue_time_sec": 15.661842, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + { + "circuit_id": "1779a2af-5022-4a2f-8822-16e04ff9db2c", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-19T00:01:17.518Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M14.829640S", + "compute_time_sec": 14.82964, + "compute_times": { + "total": 16.11652692966163, + "clean_up": 0.00970545969903469, + "create_cpp": 0.07700999267399311, + "file_setup": 1.6147372927516699, + "compile_cpp": 7.614376271143556, + "create_r1cs": 0.154385132715106, + "save_results": 0.005050705745816231, + "get_r1cs_info": 0.0008396394550800323, + "groth16_setup": 3.3179074060171843, + "export_verification_key": 3.320323884487152, + "download_trusted_setup_file": 0.0015841908752918243 + }, + "file_size": 1719996, + "queue_time": "P0DT00H00M21.506947S", + "queue_time_sec": 21.506947, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "3b05d243-439c-4fe4-a527-aa95ee817c68", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-18T23:44:10.716Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M08.500698S", + "compute_time_sec": 8.500698, + "compute_times": { + "total": 9.787439923733473, + "clean_up": 0.013815293088555336, + "create_cpp": 0.06775672547519207, + "file_setup": 1.5670747924596071, + "compile_cpp": 5.217347398400307, + "create_r1cs": 0.03056485578417778, + "save_results": 0.006023731082677841, + "get_r1cs_info": 0.0007077902555465698, + "groth16_setup": 1.4515825044363737, + "export_verification_key": 1.4297321401536465, + "download_trusted_setup_file": 0.0024385377764701843 + }, + "file_size": 1719996, + "queue_time": "P0DT00H00M01.294188S", + "queue_time_sec": 1.294188, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "18835ec5-8156-4bbc-a418-96fb158d819d", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-18T23:42:13.949Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M13.803270S", + "compute_time_sec": 13.80327, + "compute_times": { + "total": 15.069168468937278, + "clean_up": 0.010122904554009438, + "create_cpp": 0.12114278227090836, + "file_setup": 1.5526539776474237, + "compile_cpp": 7.2996343690901995, + "create_r1cs": 0.07337300851941109, + "save_results": 0.10131139867007732, + "get_r1cs_info": 0.0005603395402431488, + "groth16_setup": 2.957974351942539, + "export_verification_key": 2.9508997034281492, + "download_trusted_setup_file": 0.0010457858443260193 + }, + "file_size": 1719996, + "queue_time": "P0DT00H00M01.279988S", + "queue_time_sec": 1.279988, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "640e3c12-230c-475a-881c-428b706d21c8", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-18T23:36:30.574Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M13.521983S", + "compute_time_sec": 13.521983, + "compute_times": { + "total": 14.785143690183759, + "clean_up": 0.00823935680091381, + "create_cpp": 0.10304738581180573, + "file_setup": 1.505700759589672, + "compile_cpp": 7.270766986533999, + "create_r1cs": 0.07485816441476345, + "save_results": 0.0029987990856170654, + "get_r1cs_info": 0.0006173755973577499, + "groth16_setup": 2.891835331916809, + "export_verification_key": 2.924815448001027, + "download_trusted_setup_file": 0.0017245206981897354 + }, + "file_size": 1719981, + "queue_time": "P0DT00H00M27.741822S", + "queue_time_sec": 27.741822, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "f84dc630-aca7-49a8-843b-3e52743e5493", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "circom", + "date_created": "2023-12-17T19:35:22.108Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M13.399840S", + "compute_time_sec": 13.39984, + "compute_times": { + "total": 14.661026014015079, + "clean_up": 0.005762990564107895, + "create_cpp": 0.07418840192258358, + "file_setup": 1.5508117154240608, + "compile_cpp": 7.441567042842507, + "create_r1cs": 0.0411736685782671, + "save_results": 0.003770258277654648, + "get_r1cs_info": 0.0007237941026687622, + "groth16_setup": 2.749024560675025, + "export_verification_key": 2.7917208038270473, + "download_trusted_setup_file": 0.0016946438699960709 + }, + "file_size": 1650609, + "queue_time": "P0DT00H00M20.325028S", + "queue_time_sec": 20.325028, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "e47dfdfd-6570-4c66-ab49-d6ae79ff8fff", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "noir", + "date_created": "2023-12-17T18:49:58.483Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M04.373831S", + "compute_time_sec": 4.373831, + "compute_times": { + "total": 5.606248481199145, + "clean_up": 0.000952577218413353, + "file_setup": 1.4592411685734987, + "nargo_checks": 4.145449373871088 + }, + "file_size": 724, + "queue_time": "P0DT00H00M17.784967S", + "queue_time_sec": 17.784967, + "uploaded_file_name": "my-circuit.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "my_circuit", + "noir_version": "0.17.0" + }, + { + "circuit_id": "c813ef8c-d0aa-4c1a-aed7-8dc03175a13a", + "circuit_name": "_2noir-hi", + "project_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:44:44.083Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.215446S", + "compute_time_sec": 0.215446, + "compute_times": { + "total": 1.39835050329566, + "file_setup": 1.395031625404954, + "nargo_checks": 0.003077572211623192 + }, + "file_size": 742, + "queue_time": "P0DT00H00M01.360483S", + "queue_time_sec": 1.360483, + "uploaded_file_name": "_2noir-hi.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: nargo info stdout: stderr: Invalid package name `Hi2noi-r_Hi` found in /tmp/sindri/circuits/c813ef8c-d0aa-4c1a-aed7-8dc03175a13a_1702485885443392/code/Nargo.toml\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.17.0" + }, + { + "circuit_id": "446232af-e1f9-42fa-9bd9-f719b7ca91e3", + "circuit_name": "_2noir-hi", + "project_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:43:51.455Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.479235S", + "compute_time_sec": 1.479235, + "compute_times": { + "total": 2.6415348909795284, + "clean_up": 0.0005522631108760834, + "file_setup": 1.3729195687919855, + "nargo_checks": 1.2678131125867367 + }, + "file_size": 741, + "queue_time": "P0DT00H00M01.942949S", + "queue_time_sec": 1.942949, + "uploaded_file_name": "_2noir-hi.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "Hi2noir_Hi", + "noir_version": "0.17.0" + }, + { + "circuit_id": "022c02c4-2091-4670-ada4-33424a7cd98a", + "circuit_name": "_2noir-hi", + "project_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:43:04.488Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.415435S", + "compute_time_sec": 1.415435, + "compute_times": { + "total": 2.570197055116296, + "clean_up": 0.00041295401751995087, + "file_setup": 1.3385441917926073, + "nargo_checks": 1.2309921570122242 + }, + "file_size": 737, + "queue_time": "P0DT00H00M01.245783S", + "queue_time_sec": 1.245783, + "uploaded_file_name": "_2noir-hi.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "2noir_Hi", + "noir_version": "0.17.0" + }, + { + "circuit_id": "af8ed999-07b8-4bc2-b6b6-676c21b36b20", + "circuit_name": "_2noir-hi", + "project_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:42:44.606Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.405646S", + "compute_time_sec": 1.405646, + "compute_times": { + "total": 2.5658690985292196, + "clean_up": 0.00047394633293151855, + "file_setup": 1.3717324659228325, + "nargo_checks": 1.1934157982468605 + }, + "file_size": 736, + "queue_time": "P0DT00H00M01.186038S", + "queue_time_sec": 1.186038, + "uploaded_file_name": "_2noir-hi.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "2noir_hi", + "noir_version": "0.17.0" + }, + { + "circuit_id": "cc984ebc-7fd8-4b5e-8a33-49f2205d0e21", + "circuit_name": "_2noir-hi", + "project_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:42:17.783Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.462830S", + "compute_time_sec": 1.46283, + "compute_times": { + "total": 2.6199891455471516, + "clean_up": 0.00041804835200309753, + "file_setup": 1.3820457514375448, + "nargo_checks": 1.2372824884951115 + }, + "file_size": 739, + "queue_time": "P0DT00H00M01.251790S", + "queue_time_sec": 1.25179, + "uploaded_file_name": "_2noir-hi.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "_noir_hi", + "noir_version": "0.17.0" + }, + { + "circuit_id": "4dbe8704-8810-4ea7-a170-0588aed53ba6", + "circuit_name": "_2noir-hi", + "project_name": "_2noir-hi", + "circuit_type": "noir", + "date_created": "2023-12-13T16:41:44.867Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.422583S", + "compute_time_sec": 1.422583, + "compute_times": { + "total": 2.580868471413851, + "clean_up": 0.00045336224138736725, + "file_setup": 1.360721966251731, + "nargo_checks": 1.2194277700036764 + }, + "file_size": 727, + "queue_time": "P0DT00H00M01.187135S", + "queue_time_sec": 1.187135, + "uploaded_file_name": "_2noir-hi.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_hi", + "noir_version": "0.17.0" + }, + { + "circuit_id": "c58e260d-1ced-43bf-8431-deb20fb588ff", + "circuit_name": "_noir-circuit-32", + "project_name": "_noir-circuit-32", + "circuit_type": "noir", + "date_created": "2023-12-13T16:31:57.140Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.154282S", + "compute_time_sec": 6.154282, + "compute_times": { + "total": 7.310710787773132, + "clean_up": 0.00043790414929389954, + "file_setup": 1.3356177434325218, + "nargo_checks": 5.974256757646799 + }, + "file_size": 736, + "queue_time": "P0DT00H00M18.865270S", + "queue_time_sec": 18.86527, + "uploaded_file_name": "_noir-circuit-32.tar.gz", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 7, + "curve": "bn254", + "nargo_package_name": "noir_circuit_32", + "noir_version": "0.17.0" + }, + { + "circuit_id": "007be9c5-84e1-4496-b552-e3c616e4f68d", + "circuit_name": "noir", + "project_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T20:26:39.713Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.813118S", + "compute_time_sec": 1.813118, + "compute_times": { + "total": 3.01790676638484, + "clean_up": 0.000589149072766304, + "file_setup": 1.37160237506032, + "nargo_checks": 1.6454425044357777 + }, + "file_size": 3951, + "queue_time": "P0DT00H00M01.305567S", + "queue_time_sec": 1.305567, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "noir", + "noir_version": "0.17.0" + }, + { + "circuit_id": "4f6b6be9-faec-4819-8be8-7000aeea09df", + "circuit_name": "noir", + "project_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T20:23:01.975Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M04.488323S", + "compute_time_sec": 4.488323, + "compute_times": { + "total": 5.69258569739759, + "clean_up": 0.0005774423480033875, + "file_setup": 1.3714763727039099, + "nargo_checks": 4.320127023383975 + }, + "file_size": 706, + "queue_time": "P0DT00H00M19.825139S", + "queue_time_sec": 19.825139, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "noir", + "noir_version": "0.17.0" + }, + { + "circuit_id": "4d2b059e-bce1-42ce-a46b-26f239018987", + "circuit_name": "noir", + "project_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T20:09:13.111Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M04.592621S", + "compute_time_sec": 4.592621, + "compute_times": { + "total": 5.8083343375474215, + "clean_up": 0.0006539653986692429, + "file_setup": 1.3848200682550669, + "nargo_checks": 4.422410562634468 + }, + "file_size": 3746, + "queue_time": "P0DT00H00M20.409290S", + "queue_time_sec": 20.40929, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "noir", + "noir_version": "0.17.0" + }, + { + "circuit_id": "b841e6f9-f321-4d23-af8e-04986859fb9e", + "circuit_name": "noir", + "project_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:46:56.192Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.901192S", + "compute_time_sec": 1.901192, + "compute_times": { + "total": 3.042013813741505, + "clean_up": 0.0005592899397015572, + "file_setup": 1.3641308145597577, + "nargo_checks": 1.6769273420795798 + }, + "file_size": 646, + "queue_time": "P0DT00H00M01.216309S", + "queue_time_sec": 1.216309, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "pagerank", + "noir_version": "0.17.0" + }, + { + "circuit_id": "a61a964c-5a58-4314-8ebc-7e19bf93b162", + "circuit_name": "noir", + "project_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:44:36.302Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M03.854306S", + "compute_time_sec": 3.854306, + "compute_times": { + "total": 5.005337344482541, + "clean_up": 0.0004933271557092667, + "file_setup": 1.3198325717821717, + "nargo_checks": 3.684743066318333 + }, + "file_size": 646, + "queue_time": "P0DT00H00M01.049939S", + "queue_time_sec": 1.049939, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": null, + "acir_opcodes": 1, + "circuit_size": 6, + "curve": "bn254", + "nargo_package_name": "pagerank", + "noir_version": "0.17.0" + }, + { + "circuit_id": "ff88328c-cd73-4c7b-ad3c-ccffc318b9ac", + "circuit_name": "noir", + "project_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:44:01.042Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.321372S", + "compute_time_sec": 1.321372, + "compute_times": { + "total": 2.4821140887215734, + "file_setup": 1.3312397608533502, + "nargo_checks": 1.1506206970661879 + }, + "file_size": 649, + "queue_time": "P0DT00H00M01.147771S", + "queue_time_sec": 1.147771, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: nargo info stdout: stderr: warning: unused variable Y\n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:2:19\n │\n2 │ fn main(X: Field, Y: Field) {\n │ - unused variable \n │\n\nwarning: unused variable X\n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:2:9\n │\n2 │ fn main(X: Field, Y: Field) {\n │ - unused variable \n │\n\nerror: cannot find `x` in this scope \n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:4:12\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: cannot find `y` in this scope \n ┌─ /tmp/sindri/circuits/ff88328c-cd73-4c7b-ad3c-ccffc318b9ac_1701632642189918/code/src/main.nr:4:17\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nAborting due to 2 previous errors\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.17.0" + }, + { + "circuit_id": "d75863d3-4343-4692-a714-e90d4002fd4c", + "circuit_name": "noir", + "project_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:42:50.433Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.254776S", + "compute_time_sec": 1.254776, + "compute_times": { + "total": 2.4055077601224184, + "file_setup": 1.3746437635272741, + "nargo_checks": 1.0305692087858915 + }, + "file_size": 653, + "queue_time": "P0DT00H00M01.040189S", + "queue_time_sec": 1.040189, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: nargo info stdout: stderr: error: cannot find `x` in this scope \n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:4:12\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: cannot find `y` in this scope \n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:4:17\n │\n4 │ assert(x == y);\n │ - not found in this scope\n │\n\nerror: Expected a : but found X\n ┌─ /tmp/sindri/circuits/d75863d3-4343-4692-a714-e90d4002fd4c_1701632571473985/code/src/main.nr:2:17\n │\n2 │ fn main(private X: Field, public Y: Field) {\n │ -\n │\n\nAborting due to 3 previous errors\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.17.0" + }, + { + "circuit_id": "872f59ef-992c-41ef-a01f-0b856af48bba", + "circuit_name": "noir", + "project_name": "noir", + "circuit_type": "noir", + "date_created": "2023-12-03T19:40:12.889Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "barretenberg", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.165442S", + "compute_time_sec": 2.165442, + "compute_times": { + "total": 3.31729419529438, + "file_setup": 1.312557090073824, + "nargo_checks": 2.004337651655078 + }, + "file_size": 642, + "queue_time": "P0DT00H00M18.785446S", + "queue_time_sec": 18.785446, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: nargo info stdout: stderr: warning: Unused expression result of type bool\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ ------\n │\n\nerror: cannot find `enforce` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:5\n │\n4 │ enforce X == Y;\n │ ------- not found in this scope\n │\n\nerror: cannot find `X` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ - not found in this scope\n │\n\nerror: cannot find `Y` in this scope \n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:18\n │\n4 │ enforce X == Y;\n │ - not found in this scope\n │\n\nerror: Expected a : but found X\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:2:17\n │\n2 │ fn main(private X: Field, public Y: Field) {\n │ -\n │\n\nerror: Expected a ; separating these two statements\n ┌─ /tmp/sindri/circuits/872f59ef-992c-41ef-a01f-0b856af48bba_1701632431674360/code/src/main.nr:4:13\n │\n4 │ enforce X == Y;\n │ -\n │\n\nAborting due to 5 previous errors\n", + "acir_opcodes": null, + "circuit_size": null, + "curve": "bn254", + "nargo_package_name": "", + "noir_version": "0.17.0" + }, + { + "circuit_id": "e098c8a0-930e-4efe-9d52-1172682b8a5f", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:14:03.406Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.700449S", + "compute_time_sec": 2.700449, + "compute_times": { + "total": 3.862834582105279, + "clean_up": 0.0048230309039354324, + "file_setup": 1.4248666781932116, + "create_r1cs": 0.019674228504300117, + "create_wasm": 0.02921307645738125, + "save_results": 0.003329528495669365, + "get_r1cs_info": 0.00027392804622650146, + "groth16_setup": 1.1982815023511648, + "export_verification_key": 1.1812070365995169, + "download_trusted_setup_file": 0.0009372644126415253 + }, + "file_size": 1537235, + "queue_time": "P0DT00H00M01.240923S", + "queue_time_sec": 1.240923, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "a45c4c1f-dcaa-4018-8de5-dd567d12c730", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:12:15.898Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.249043S", + "compute_time_sec": 7.249043, + "compute_times": { + "total": 8.408733254298568, + "clean_up": 0.006613824516534805, + "create_cpp": 0.05350269004702568, + "file_setup": 1.4143117368221283, + "compile_cpp": 4.4514400865882635, + "create_r1cs": 0.020590879023075104, + "save_results": 0.002988070249557495, + "get_r1cs_info": 0.00036310404539108276, + "groth16_setup": 1.2632708046585321, + "export_verification_key": 1.1944759152829647, + "download_trusted_setup_file": 0.0009543616324663162 + }, + "file_size": 1719868, + "queue_time": "P0DT00H00M01.325923S", + "queue_time_sec": 1.325923, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "b7579bcc-2c6b-4130-b4da-5563ff1c4a6d", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:08:10.932Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.128823S", + "compute_time_sec": 7.128823, + "compute_times": { + "total": 8.290217800065875, + "clean_up": 0.006579896435141563, + "create_cpp": 0.049633922055363655, + "file_setup": 1.407272644340992, + "compile_cpp": 4.411186024546623, + "create_r1cs": 0.020449023693799973, + "save_results": 0.0031916871666908264, + "get_r1cs_info": 0.0003460422158241272, + "groth16_setup": 1.1822046767920256, + "export_verification_key": 1.2081128470599651, + "download_trusted_setup_file": 0.0009996052831411362 + }, + "file_size": 1719871, + "queue_time": "P0DT00H00M01.176634S", + "queue_time_sec": 1.176634, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "8de8feb9-7fd1-4e03-a6b2-1a80af500002", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T21:03:13.779Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.214778S", + "compute_time_sec": 0.214778, + "compute_times": { + "total": 1.39355612359941, + "create_cpp": 0.005528604611754417, + "file_setup": 1.387480080127716 + }, + "file_size": 1086, + "queue_time": "P0DT00H00M01.091083S", + "queue_time_sec": 1.091083, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/8de8feb9-7fd1-4e03-a6b2-1a80af500002_1701550994869957 --c /tmp/sindri/circuits/8de8feb9-7fd1-4e03-a6b2-1a80af500002_1701550994869957/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "60381cad-bfeb-4d69-9305-eede3772e693", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:54:52.720Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.127570S", + "compute_time_sec": 7.12757, + "compute_times": { + "total": 8.300101362168789, + "clean_up": 0.006741989403963089, + "create_cpp": 0.04977302439510822, + "file_setup": 1.3937485367059708, + "compile_cpp": 4.4108633529394865, + "create_r1cs": 0.020317360758781433, + "save_results": 0.003299059346318245, + "get_r1cs_info": 0.0003479979932308197, + "groth16_setup": 1.2352007273584604, + "export_verification_key": 1.1786142773926258, + "download_trusted_setup_file": 0.0009277686476707458 + }, + "file_size": 1720407, + "queue_time": "P0DT00H00M01.180095S", + "queue_time_sec": 1.180095, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "f2231fe1-b8db-4795-81a1-e9cad676eeb0", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:54:30.461Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.186269S", + "compute_time_sec": 7.186269, + "compute_times": { + "total": 8.347925985231996, + "clean_up": 0.006883986294269562, + "create_cpp": 0.055882176384329796, + "file_setup": 1.3711591251194477, + "compile_cpp": 4.481259575113654, + "create_r1cs": 0.020169200375676155, + "save_results": 0.003566296771168709, + "get_r1cs_info": 0.00035143643617630005, + "groth16_setup": 1.192156182602048, + "export_verification_key": 1.2153031043708324, + "download_trusted_setup_file": 0.0009823162108659744 + }, + "file_size": 1720386, + "queue_time": "P0DT00H00M01.111650S", + "queue_time_sec": 1.11165, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "413e6948-2e3f-4357-a1cc-caac91ed2bf4", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:51:38.256Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.180372S", + "compute_time_sec": 0.180372, + "compute_times": { + "total": 1.3365695010870695, + "create_cpp": 0.005229467526078224, + "file_setup": 1.331127068027854 + }, + "file_size": 4524, + "queue_time": "P0DT00H00M01.087627S", + "queue_time_sec": 1.087627, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/413e6948-2e3f-4357-a1cc-caac91ed2bf4_1701550299344002 --c /tmp/sindri/circuits/413e6948-2e3f-4357-a1cc-caac91ed2bf4_1701550299344002/code/circuit.circom stdout: stderr: error[P1014]: The file ./node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "c4d34eae-cd67-442f-a268-05cee221ff34", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:51:05.065Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.227270S", + "compute_time_sec": 0.22727, + "compute_times": { + "total": 1.387567725032568, + "create_cpp": 0.005518514662981033, + "file_setup": 1.3818144612014294 + }, + "file_size": 4516, + "queue_time": "P0DT00H00M01.200424S", + "queue_time_sec": 1.200424, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/c4d34eae-cd67-442f-a268-05cee221ff34_1701550266266086 --c /tmp/sindri/circuits/c4d34eae-cd67-442f-a268-05cee221ff34_1701550266266086/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "965a8f4e-e2e2-40f5-a382-b06f2d2f6519", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:49:50.199Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.208167S", + "compute_time_sec": 0.208167, + "compute_times": { + "total": 1.3689671531319618, + "create_cpp": 0.005460506305098534, + "file_setup": 1.3632374834269285 + }, + "file_size": 4516, + "queue_time": "P0DT00H00M01.304207S", + "queue_time_sec": 1.304207, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/965a8f4e-e2e2-40f5-a382-b06f2d2f6519_1701550191503467 --c /tmp/sindri/circuits/965a8f4e-e2e2-40f5-a382-b06f2d2f6519_1701550191503467/code/circuit.circom stdout: stderr: error[P1014]: The file node_modules/circomlib/circuits/comparators.circom to be included has not been found\n = Consider using compilation option -l to indicate include paths\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "a1739a89-37ba-465b-bba6-e649cfda01ab", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:47:15.011Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.174086S", + "compute_time_sec": 0.174086, + "compute_times": { + "total": 1.3330576121807098, + "create_cpp": 0.005246447399258614, + "file_setup": 1.3275200203061104 + }, + "file_size": 4483, + "queue_time": "P0DT00H00M19.864284S", + "queue_time_sec": 19.864284, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511 --c /tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/a1739a89-37ba-465b-bba6-e649cfda01ab_1701550054875511/code/circuit.circom':12:13\n │\n12 │ IsEqual isEqualCircuit();\n │ ^^^^^^^^^^^^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "0e5ab1b4-82b6-43ce-9454-637729e5ddef", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:05:13.309Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.546964S", + "compute_time_sec": 2.546964, + "compute_times": { + "total": 3.7097523529082537, + "clean_up": 0.0005107801407575607, + "file_setup": 1.3446728140115738, + "create_r1cs": 0.007440237328410149, + "create_wasm": 0.016755376011133194, + "save_results": 0.0036186836659908295, + "get_r1cs_info": 0.00025043077766895294, + "groth16_setup": 1.1559293158352375, + "export_verification_key": 1.1794348638504744, + "download_trusted_setup_file": 0.0008941646665334702 + }, + "file_size": 54024, + "queue_time": "P0DT00H00M01.209301S", + "queue_time_sec": 1.209301, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "af818f7d-cf8c-4bab-a30f-57a5d9c73d73", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T20:03:06.093Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.578866S", + "compute_time_sec": 2.578866, + "compute_times": { + "total": 3.752036551013589, + "clean_up": 0.0005340799689292908, + "file_setup": 1.3582166992127895, + "create_r1cs": 0.007758324965834618, + "create_wasm": 0.01886793226003647, + "save_results": 0.0029870178550481796, + "get_r1cs_info": 0.0002993810921907425, + "groth16_setup": 1.1675188429653645, + "export_verification_key": 1.1944289654493332, + "download_trusted_setup_file": 0.0009995810687541962 + }, + "file_size": 54024, + "queue_time": "P0DT00H00M19.449170S", + "queue_time_sec": 19.44917, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "4272b319-f1eb-400d-a6a2-ef1cf93603fa", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T19:28:31.237Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.697079S", + "compute_time_sec": 2.697079, + "compute_times": { + "total": 3.860771119594574, + "clean_up": 0.0005786605179309845, + "file_setup": 1.3233154714107513, + "create_r1cs": 0.007670976221561432, + "create_wasm": 0.017503729090094566, + "save_results": 0.04876627214252949, + "get_r1cs_info": 0.0002490133047103882, + "groth16_setup": 1.2176049146801233, + "export_verification_key": 1.2436372973024845, + "download_trusted_setup_file": 0.0010085124522447586 + }, + "file_size": 54024, + "queue_time": "P0DT00H00M45.887615S", + "queue_time_sec": 45.887615, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "7a45ae5e-93da-449a-a1af-7f1a4b45bd1b", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:31:32.434Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M02.383253S", + "compute_time_sec": 2.383253, + "compute_times": { + "total": 3.5439179949462414, + "clean_up": 0.0006380276754498482, + "file_setup": 1.3339016744866967, + "create_r1cs": 0.007884668186306953, + "create_wasm": 0.01797499507665634, + "save_results": 0.004143344238400459, + "get_r1cs_info": 0.000565793365240097, + "groth16_setup": 1.0339104048907757, + "export_verification_key": 1.1432477626949549, + "download_trusted_setup_file": 0.0013524582609534264 + }, + "file_size": 54025, + "queue_time": "P0DT00H00M01.183641S", + "queue_time_sec": 1.183641, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "a5e1593c-1c43-4d3f-9999-ebc859fbf1b2", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:27:06.804Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.387682S", + "compute_time_sec": 7.387682, + "compute_times": { + "total": 8.548618336208165, + "clean_up": 0.0012578116729855537, + "create_cpp": 0.04181432072073221, + "file_setup": 1.3276818674057722, + "compile_cpp": 5.035406060516834, + "create_r1cs": 0.008279835805296898, + "save_results": 0.003593659959733486, + "get_r1cs_info": 0.0006254948675632477, + "groth16_setup": 1.091116052120924, + "export_verification_key": 1.0372483730316162, + "download_trusted_setup_file": 0.0012065665796399117 + }, + "file_size": 229069, + "queue_time": "P0DT00H00M18.717720S", + "queue_time_sec": 18.71772, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 2, + "num_outputs": 1, + "num_private_inputs": 1, + "num_public_inputs": 1 + }, + { + "circuit_id": "31e748d0-b940-4dd3-838c-d47f7857e792", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:16:12.963Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.167528S", + "compute_time_sec": 0.167528, + "compute_times": { + "total": 1.3633314277976751, + "create_cpp": 0.005508816801011562, + "file_setup": 1.3575280215591192 + }, + "file_size": 3143, + "queue_time": "P0DT00H00M01.187746S", + "queue_time_sec": 1.187746, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624 --c /tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/31e748d0-b940-4dd3-838c-d47f7857e792_1701494174150624/code/circuit.circom':10:19\n │\n10 │ isEqual <== X === Y;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:16:02.472Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.364457S", + "compute_time_sec": 0.364457, + "compute_times": { + "total": 1.5177692053839564, + "create_cpp": 0.0061752675101161, + "file_setup": 1.5113406758755445 + }, + "file_size": 3149, + "queue_time": "P0DT00H00M01.273971S", + "queue_time_sec": 1.273971, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185 --c /tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/65a4b42b-d9f7-4c88-9bd5-2a5c7bcecf2e_1701494163746185/code/circuit.circom':10:5\n │\n10 │ isEqual <== (X - Y) * (X - Y) == 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "77122cb7-d367-4aec-af7e-6a416e40c9fd", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:14:05.849Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.285739S", + "compute_time_sec": 0.285739, + "compute_times": { + "total": 1.433143719099462, + "create_cpp": 0.00570196658372879, + "file_setup": 1.4271633345633745 + }, + "file_size": 3146, + "queue_time": "P0DT00H00M01.368079S", + "queue_time_sec": 1.368079, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573 --c /tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/77122cb7-d367-4aec-af7e-6a416e40c9fd_1701494047217573/code/circuit.circom':10:5\n │\n10 │ isEqual <== (X - Y) * (X - Y) == 0;\n │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "0b6844b4-2090-4ccb-a806-7a25c3e8d4f3", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:11:33.616Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.190295S", + "compute_time_sec": 0.190295, + "compute_times": { + "total": 1.3479114715009928, + "create_cpp": 0.006716226227581501, + "file_setup": 1.3409330770373344 + }, + "file_size": 3148, + "queue_time": "P0DT00H00M01.174311S", + "queue_time_sec": 1.174311, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791 --c /tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/0b6844b4-2090-4ccb-a806-7a25c3e8d4f3_1701493894790791/code/circuit.circom':10:35\n │\n10 │ isEqual <== (X - Y) * (X - Y) === 0;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:09:43.690Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.180634S", + "compute_time_sec": 0.180634, + "compute_times": { + "total": 1.3301707739010453, + "create_cpp": 0.00672531221061945, + "file_setup": 1.3231740267947316 + }, + "file_size": 3140, + "queue_time": "P0DT00H00M01.267544S", + "queue_time_sec": 1.267544, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637 --c /tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637/code/circuit.circom stdout: stderr: error[T3001]: Non quadratic constraints are not allowed!\n ┌─ '/tmp/sindri/circuits/947c20ff-7e8a-4fe4-a29a-5a2e2ee40b08_1701493784957637/code/circuit.circom':10:5\n │\n10 │ isEqual <== X == Y;\n │ ^^^^^^^^^^^^^^^^^^ found here\n │\n = call trace:\n ->c\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "84746bbc-80a8-4edf-845f-5d533b42d48f", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T05:08:33.991Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.182958S", + "compute_time_sec": 0.182958, + "compute_times": { + "total": 1.3482676716521382, + "create_cpp": 0.005651121959090233, + "file_setup": 1.3422273648902774 + }, + "file_size": 3141, + "queue_time": "P0DT00H00M23.976753S", + "queue_time_sec": 23.976753, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436 --c /tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom stdout: stderr: error[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == y;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/84746bbc-80a8-4edf-845f-5d533b42d48f_1701493737968436/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == y;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "ad481f61-e11e-4c34-b0a6-69d41d0734bd", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:48:47.509Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.247686S", + "compute_time_sec": 0.247686, + "compute_times": { + "total": 1.4311082614585757, + "create_cpp": 0.0059531861916184425, + "file_setup": 1.4248412810266018 + }, + "file_size": 3144, + "queue_time": "P0DT00H00M01.440336S", + "queue_time_sec": 1.440336, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610 --c /tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom stdout: stderr: error[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/ad481f61-e11e-4c34-b0a6-69d41d0734bd_1701492528949610/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:47:48.347Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.186337S", + "compute_time_sec": 0.186337, + "compute_times": { + "total": 1.3291292237117887, + "create_cpp": 0.005445321090519428, + "file_setup": 1.3232828453183174 + }, + "file_size": 3144, + "queue_time": "P0DT00H00M01.389798S", + "queue_time_sec": 1.389798, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860 --c /tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom stdout: stderr: error[T2021]: Calling symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':13:31\n │\n13 │ component main {public [Y]} = sudoku();\n │ ^^^^^^^^ Calling unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':10:17\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nerror[T2021]: Undeclared symbol\n ┌─ '/tmp/sindri/circuits/c3ccec3d-5d27-4d9a-b1a0-5a1d8d1b5232_1701492469736860/code/circuit.circom':10:22\n │\n10 │ isEqual <== a == b;\n │ ^ Using unknown symbol\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "de05d443-3491-48f6-891a-ba4ffc60cb74", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:47:16.025Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.203844S", + "compute_time_sec": 0.203844, + "compute_times": { + "total": 1.358934978954494, + "create_cpp": 0.005131745710968971, + "file_setup": 1.3535515246912837 + }, + "file_size": 3147, + "queue_time": "P0DT00H00M01.239620S", + "queue_time_sec": 1.23962, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759 --c /tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/de05d443-3491-48f6-891a-ba4ffc60cb74_1701492437264759/code/circuit.circom':10:19\n │\n10 │ isEqual <== a === b;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "c2c49d55-ce1e-45fd-a030-afac71697699", + "circuit_name": "c", + "project_name": "c", + "circuit_type": "circom", + "date_created": "2023-12-02T04:44:43.907Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M00.211198S", + "compute_time_sec": 0.211198, + "compute_times": { + "total": 1.3726867232471704, + "create_cpp": 0.04041997902095318, + "file_setup": 1.3318777102977037 + }, + "file_size": 3118, + "queue_time": "P0DT00H00M21.285690S", + "queue_time_sec": 21.28569, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: circom2 --output /tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778 --c /tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778/code/circuit.circom stdout: stderr: error[P1012]: illegal expression\n ┌─ '/tmp/sindri/circuits/c2c49d55-ce1e-45fd-a030-afac71697699_1701492305192778/code/circuit.circom':8:19\n │\n8 │ isEqual <== a === b;\n │ ^^^ here\n\nprevious errors were found\n", + "curve": "bn254", + "num_constraints": null, + "num_outputs": null, + "num_private_inputs": null, + "num_public_inputs": null + }, + { + "circuit_id": "06e13b7b-5698-4c0f-b5d3-6b18ba3f334e", + "circuit_name": "sudoku", + "project_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:58:52.961Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M30.485776S", + "compute_time_sec": 30.485776, + "compute_times": { + "total": 31.713325195014477, + "clean_up": 0.0050907619297504425, + "create_cpp": 0.5502202846109867, + "file_setup": 1.4041321221739054, + "compile_cpp": 8.600912608206272, + "create_r1cs": 0.5660600401461124, + "save_results": 0.015263739973306656, + "get_r1cs_info": 0.0007791165262460709, + "groth16_setup": 18.966865327209234, + "export_verification_key": 1.5605580545961857, + "download_trusted_setup_file": 0.043034087866544724 + }, + "file_size": 7382369, + "queue_time": "P0DT00H00M01.531790S", + "queue_time_sec": 1.53179, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 + }, + { + "circuit_id": "f54fb760-6683-4648-8c21-b3e806ed4cf8", + "circuit_name": "sudoku", + "project_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:57:39.629Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M30.503827S", + "compute_time_sec": 30.503827, + "compute_times": { + "total": 31.731675423681736, + "clean_up": 0.005224447697401047, + "create_cpp": 0.5869219042360783, + "file_setup": 1.396010784432292, + "compile_cpp": 8.755487740039825, + "create_r1cs": 0.6137677505612373, + "save_results": 0.015961000695824623, + "get_r1cs_info": 0.0007797814905643463, + "groth16_setup": 18.781834876164794, + "export_verification_key": 1.5326797477900982, + "download_trusted_setup_file": 0.04255225136876106 + }, + "file_size": 7382369, + "queue_time": "P0DT00H00M01.329617S", + "queue_time_sec": 1.329617, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 + }, + { + "circuit_id": "33ed2a7e-84c0-4ffb-b50f-60dba1bc28d4", + "circuit_name": "sudoku", + "project_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:53:41.285Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M29.404746S", + "compute_time_sec": 29.404746, + "compute_times": { + "total": 30.63611113280058, + "clean_up": 0.004741033539175987, + "create_cpp": 0.5701096802949905, + "file_setup": 1.4058604761958122, + "compile_cpp": 8.18474044650793, + "create_r1cs": 0.5578694771975279, + "save_results": 0.012727703899145126, + "get_r1cs_info": 0.0007434040307998657, + "groth16_setup": 18.383400244638324, + "export_verification_key": 1.4725701548159122, + "download_trusted_setup_file": 0.042938267812132835 + }, + "file_size": 7382369, + "queue_time": "P0DT00H00M01.393016S", + "queue_time_sec": 1.393016, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 + }, + { + "circuit_id": "2613893b-915c-4e93-a4dc-fb554d00ffc7", + "circuit_name": "sudoku", + "project_name": "sudoku", + "circuit_type": "circom", + "date_created": "2023-12-02T03:50:43.511Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M28.987369S", + "compute_time_sec": 28.987369, + "compute_times": { + "total": 30.219565767794847, + "clean_up": 0.005328845232725143, + "create_cpp": 0.5412574652582407, + "file_setup": 1.408054981380701, + "compile_cpp": 7.979971516877413, + "create_r1cs": 0.5340761709958315, + "save_results": 0.10810003615915775, + "get_r1cs_info": 0.0008541643619537354, + "groth16_setup": 18.02999261394143, + "export_verification_key": 1.5689898952841759, + "download_trusted_setup_file": 0.04256066307425499 + }, + "file_size": 7382369, + "queue_time": "P0DT00H01M13.815898S", + "queue_time_sec": 73.815898, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 11906, + "num_outputs": 1, + "num_private_inputs": 81, + "num_public_inputs": 81 + }, + { + "circuit_id": "e4018ec7-7be6-4f32-b4b2-226482dbeaeb", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "gnark", + "date_created": "2023-12-02T00:28:21.086Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M12.293107S", + "compute_time_sec": 12.293107, + "compute_times": { + "total": 1.540343570522964, + "file_setup": 1.5400111814960837 + }, + "file_size": 3876, + "queue_time": "P0DT00H00M01.149716S", + "queue_time_sec": 1.149716, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # github.com/sindri-labs/gnark-scaffold/example\ncircuit/mycircuit.go:22:6: api.AssertBadStuffHereWillNotWorkIsEqual undefined (type frontend.API has no field or method AssertBadStuffHereWillNotWorkIsEqual)\n", + "curve": "bls24-315", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "e7d8a957-a820-4d7d-b75c-9fd4bb384c24", + "circuit_name": "my-circuit", + "project_name": "my-circuit", + "circuit_type": "gnark", + "date_created": "2023-12-02T00:27:16.183Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M16.323835S", + "compute_time_sec": 16.323835, + "compute_times": { + "total": 17.493196861818433, + "compile": 15.894271181896329, + "clean_up": 0.06409060023725033, + "file_setup": 1.479825496673584, + "save_results": 0.030155125074088573, + "compile_r1cs_and_keygen": 0.024464260786771774 + }, + "file_size": 19740582, + "queue_time": "P0DT00H00M20.294201S", + "queue_time_sec": 20.294201, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bls24-315", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "1af09136-a77b-4db4-a5f1-cb295117b118", + "circuit_name": "gnark", + "project_name": "gnark", + "circuit_type": "gnark", + "date_created": "2023-12-02T00:02:34.146Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M12.571758S", + "compute_time_sec": 12.571758, + "compute_times": { + "total": 13.761676067486405, + "compile": 12.108159688301384, + "clean_up": 0.0739858876913786, + "file_setup": 1.5122289564460516, + "save_results": 0.0421032914891839, + "compile_r1cs_and_keygen": 0.02487844880670309 + }, + "file_size": 19740713, + "queue_time": "P0DT00H00M01.177760S", + "queue_time_sec": 1.17776, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bw6-633", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "27921799-4d7c-4a13-810b-f1cd17d33006", + "circuit_name": "gnark", + "project_name": "gnark", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:54:25.971Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M15.096119S", + "compute_time_sec": 15.096119, + "compute_times": { + "total": 16.24127036239952, + "compile": 14.711085448041558, + "clean_up": 0.060433197766542435, + "file_setup": 1.4220957215875387, + "save_results": 0.03548778221011162, + "compile_r1cs_and_keygen": 0.011818661354482174 + }, + "file_size": 19740996, + "queue_time": "P0DT00H00M18.859283S", + "queue_time_sec": 18.859283, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "069ad07d-cf77-40bb-877e-39ce42135fcb", + "circuit_name": "cubic", + "project_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:30:10.306Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.119803S", + "compute_time_sec": 11.119803, + "compute_times": { + "total": 1.4363502692431211, + "file_setup": 1.4360267175361514 + }, + "file_size": 19555, + "queue_time": "P0DT00H00M01.930609S", + "queue_time_sec": 1.930609, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "1f52deb6-012a-4b75-bc60-b07eeaacfe8c", + "circuit_name": "cubic", + "project_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:26:29.959Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M13.939780S", + "compute_time_sec": 13.93978, + "compute_times": { + "total": 1.4325123187154531, + "file_setup": 1.4321166425943375 + }, + "file_size": 3976, + "queue_time": "P0DT00H00M47.459123S", + "queue_time_sec": 47.459123, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "a4b7b3cb-227d-41bf-aed0-abae2340328b", + "circuit_name": "cubic", + "project_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T23:11:51.697Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M13.350788S", + "compute_time_sec": 13.350788, + "compute_times": { + "total": 1.6208326760679483, + "file_setup": 1.6202213428914547 + }, + "file_size": 3976, + "queue_time": "P0DT00H00M19.954132S", + "queue_time_sec": 19.954132, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:20: undefined: cubic.Circuit2\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "9716abca-e862-41cf-8610-0eebdbc4cb55", + "circuit_name": "cubic", + "project_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:56:28.365Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.241851S", + "compute_time_sec": 11.241851, + "compute_times": { + "total": 12.474130183458328, + "compile": 10.825671127066016, + "clean_up": 0.061418959870934486, + "file_setup": 1.5227604731917381, + "save_results": 0.04108254425227642, + "compile_r1cs_and_keygen": 0.022699812427163124 + }, + "file_size": 19741724, + "queue_time": "P0DT00H00M01.420551S", + "queue_time_sec": 1.420551, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "d19bc706-e835-4247-920d-e2f5ade15dec", + "circuit_name": "cubic", + "project_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:55:10.340Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.246401S", + "compute_time_sec": 11.246401, + "compute_times": { + "total": 12.475918658077717, + "compile": 10.844971090555191, + "clean_up": 0.05561045743525028, + "file_setup": 1.5209588538855314, + "save_results": 0.032638829201459885, + "compile_r1cs_and_keygen": 0.021452149376273155 + }, + "file_size": 19741716, + "queue_time": "P0DT00H00M01.465348S", + "queue_time_sec": 1.465348, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "98946425-2336-4fc4-aa3b-e2dadba7a099", + "circuit_name": "cubic", + "project_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:53:46.296Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.258641S", + "compute_time_sec": 11.258641, + "compute_times": { + "total": 12.491810835897923, + "compile": 10.808460559695959, + "clean_up": 0.06728884018957615, + "file_setup": 1.5511275846511126, + "save_results": 0.04296918027102947, + "compile_r1cs_and_keygen": 0.021483000367879868 + }, + "file_size": 19741716, + "queue_time": "P0DT00H00M01.516986S", + "queue_time_sec": 1.516986, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "104caccb-063e-4457-9f93-a9578a6c105b", + "circuit_name": "cubic", + "project_name": "cubic", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:52:51.464Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M11.176662S", + "compute_time_sec": 11.176662, + "compute_times": { + "total": 12.414811408147216, + "compile": 10.73251723125577, + "clean_up": 0.08182202465832233, + "file_setup": 1.5543472524732351, + "save_results": 0.023770425468683243, + "compile_r1cs_and_keygen": 0.021878626197576523 + }, + "file_size": 19741718, + "queue_time": "P0DT00H00M01.367679S", + "queue_time_sec": 1.367679, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "075a905c-d5e7-486a-b590-b4c24acd97c7", + "circuit_name": "circuit", + "project_name": "circuit", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:50:44.245Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M14.090040S", + "compute_time_sec": 14.09004, + "compute_times": { + "total": 1.543837545439601, + "file_setup": 1.5434527061879635 + }, + "file_size": 4148, + "queue_time": "P0DT00H00M21.153753S", + "queue_time_sec": 21.153753, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "ee439ae8-4371-4465-b5ee-53fb02e5a63f", + "circuit_name": "circuit", + "project_name": "circuit", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:29:14.159Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M10.460622S", + "compute_time_sec": 10.460622, + "compute_times": { + "total": 1.5692181382328272, + "file_setup": 1.568734273314476 + }, + "file_size": 4148, + "queue_time": "P0DT00H00M01.442896S", + "queue_time_sec": 1.442896, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "5a836785-e3f6-45ea-91bb-0ac02083b991", + "circuit_name": "circuit", + "project_name": "circuit", + "circuit_type": "gnark", + "date_created": "2023-12-01T22:21:25.657Z", + "meta": {}, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Failed", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M14.046979S", + "compute_time_sec": 14.046979, + "compute_times": { + "total": 1.551876936107874, + "file_setup": 1.5510845798999071 + }, + "file_size": 4143, + "queue_time": "P0DT00H00M18.025252S", + "queue_time_sec": 18.025252, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": false, + "verification_key": null, + "warnings": null, + "error": "cmd: go build -a -o gnark_prover stdout: stderr: # gnark.prover\n./prover.go:81:23: undefined: compress.Dog\n", + "curve": "bn254", + "gnark_version": "v0.9.0" + }, + { + "circuit_id": "d296a14b-903d-4d37-bac4-88c4cc0274ef", + "circuit_name": "multiplier2", + "project_name": "multiplier2", + "circuit_type": "circom", + "date_created": "2023-12-01T19:22:16.230Z", + "meta": {}, + "num_proofs": 1, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "latest" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.920270S", + "compute_time_sec": 7.92027, + "compute_times": { + "total": 9.144548835232854, + "clean_up": 0.0016796644777059555, + "create_cpp": 0.05204322002828121, + "file_setup": 1.3975976463407278, + "compile_cpp": 4.545235302299261, + "create_r1cs": 0.008858315646648407, + "save_results": 0.005187435075640678, + "get_r1cs_info": 0.0006442461162805557, + "groth16_setup": 1.5628649536520243, + "export_verification_key": 1.5673195589333773, + "download_trusted_setup_file": 0.0025161877274513245 + }, + "file_size": 225511, + "queue_time": "P0DT00H00M26.442871S", + "queue_time_sec": 26.442871, + "uploaded_file_name": "", + "has_smart_contract_verifier": false, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + } + ], "rawHeaders": [ "Content-Length", - "923", + "546069", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:49 GMT", + "Wed, 21 Aug 2024 23:45:34 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -1745,33 +18730,33 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/a2b5d905-5f79-4d0c-bc24-086e17b33f40/detail?include_verification_key=false", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d6765742d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, "response": { - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", + "circuit_id": "76a8ec52-691a-4c7c-ae2c-3a4961bfac7e", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.493Z", + "date_created": "2024-08-21T23:45:34.483Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Queued", "tags": [ - "from-tarball-for-get-proof" + "from-tarball-for-get-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, "file_size": 529, - "queue_time": "P0DT00H00M00.773657S", - "queue_time_sec": 0.773657, + "queue_time": null, + "queue_time_sec": null, "uploaded_file_name": "circom-multiplier2.tgz", "has_smart_contract_verifier": false, "has_verification_key": false, @@ -1786,17 +18771,17 @@ }, "rawHeaders": [ "Content-Length", - "958", + "924", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:50 GMT", + "Wed, 21 Aug 2024 23:45:35 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -1810,33 +18795,33 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/991c35b0-5da2-4baf-ae42-be2480d98458/detail?include_verification_key=false", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d70726f76652d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, "response": { - "circuit_id": "991c35b0-5da2-4baf-ae42-be2480d98458", + "circuit_id": "451ef924-1cb3-4a5f-b5ef-48a295880052", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.489Z", + "date_created": "2024-08-21T23:45:34.168Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Queued", "tags": [ "from-tarball-for-prove-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, "file_size": 529, - "queue_time": "P0DT00H00M00.332778S", - "queue_time_sec": 0.332778, + "queue_time": null, + "queue_time_sec": null, "uploaded_file_name": "circom-multiplier2.tgz", "has_smart_contract_verifier": false, "has_verification_key": false, @@ -1851,17 +18836,17 @@ }, "rawHeaders": [ "Content-Length", - "962", + "926", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:50 GMT", + "Wed, 21 Aug 2024 23:45:35 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -1875,33 +18860,33 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/42244641-5311-4335-ba6f-45f8be17e8ad/detail?include_verification_key=false", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d66696c652d61727261790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800800092650003ed954b6fe23010c739e7538ca23d0085382f4082e5d4bdf6d47e01635ce2ddc4b66c876a85faddd779f4452bb1d222d8c3fc2e8eff637bec78c6c38461aa9a5675e9842e053729615eaa858b586b1afc3bb167b158b4ade7b88de78b6c90e4b33ccfe3386df424cfb27c00f1197c9fa4b68e1a804bb8fa1fd186ee2a0add5d431ac551bc0a02320e1e0a61a10f0570bcd225751c58c1d92f0baea00e1888e68bc34bf030ea8492a01e8102955bd844c1bdaa0de330bca3861590a41348e3341b2d21289cd37649c85631db875a2414d971e784dc4d9b5b717c4b9e8c68fbfd4e2cf9db895ed6a2fc38754c0082e0f530776f410fc3111c1a230010023f382ba9793d8e153b494b1bf901dedef540485d3ba0ab2fc4cd4751d5ae51d9eacdc1ad92d6192aa47b5995c1f7f5daffb87137fb39089a1328c9a583ca0f84f5fbfd0e47abe02cf7cf3ee77f7b86e8a755f22c1e4ee77f9c2647f99fcd9204f3ff121c421a2ec359380937becdc3e76b6f08b9285fe4bf15726bc4191f8053f99fa5e971fecff339e6ff2538f8da137eb3beae57fe2180f0a5baf64140b526540bb24f7a655a51291eb975d36e4e1b26e1a45945d28a374b7c0ea9ceded7e187dffaddb0de549b7d2b6e643acb3b4d1bb5f7e5fbbe71d3da7646b9229977d627e124b7f6b6adf2dcb40bdedc84be6e5efb8f2208822008822008822008822008822008822008825c873f13581c35002800000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, "response": { - "circuit_id": "42244641-5311-4335-ba6f-45f8be17e8ad", + "circuit_id": "1c459443-df9d-46b1-a0e1-50b5d0cbc5ab", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.488Z", + "date_created": "2024-08-21T23:45:34.465Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Queued", "tags": [ - "sdk-create-proof-multiplier2-circuit" + "from-file-array" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.444749S", - "queue_time_sec": 0.444749, + "file_size": 537, + "queue_time": null, + "queue_time_sec": null, "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": false, "has_verification_key": false, @@ -1916,17 +18901,17 @@ }, "rawHeaders": [ "Content-Length", - "971", + "914", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:50 GMT", + "Wed, 21 Aug 2024 23:45:35 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -1940,33 +18925,33 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/e17b8bc6-b716-4996-8040-2a2521ed79ab/detail?include_verification_key=false", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d616c6c2d636972637569742d70726f6f66730d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, "response": { - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.560Z", + "date_created": "2024-08-21T23:45:34.523Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Queued", "tags": [ "from-tarball-for-all-circuit-proofs" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, "file_size": 529, - "queue_time": "P0DT00H00M00.389084S", - "queue_time_sec": 0.389084, + "queue_time": null, + "queue_time_sec": null, "uploaded_file_name": "circom-multiplier2.tgz", "has_smart_contract_verifier": false, "has_verification_key": false, @@ -1981,17 +18966,17 @@ }, "rawHeaders": [ "Content-Length", - "967", + "931", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:50 GMT", + "Wed, 21 Aug 2024 23:45:35 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2006,57 +18991,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/088af0b5-7219-493d-9299-80cba9801fcb/detail?include_verification_key=false", + "path": "/api/v1/circuit/451ef924-1cb3-4a5f-b5ef-48a295880052/status", "body": "", "status": 200, "response": { - "circuit_id": "088af0b5-7219-493d-9299-80cba9801fcb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.789Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.309653S", - "queue_time_sec": 0.309653, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "451ef924-1cb3-4a5f-b5ef-48a295880052", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "960", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:50 GMT", + "Wed, 21 Aug 2024 23:45:36 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2071,57 +19025,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/b72ea400-2d09-49b4-a404-2c22d5c130a1/detail?include_verification_key=false", + "path": "/api/v1/circuit/76a8ec52-691a-4c7c-ae2c-3a4961bfac7e/status", "body": "", "status": 200, "response": { - "circuit_id": "b72ea400-2d09-49b4-a404-2c22d5c130a1", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.745Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-directory" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.929848S", - "queue_time_sec": 0.929848, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "76a8ec52-691a-4c7c-ae2c-3a4961bfac7e", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "949", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:50 GMT", + "Wed, 21 Aug 2024 23:45:36 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2135,34 +19058,34 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/dcc44a41-540f-4ebe-949d-ad7b26e58816/detail?include_verification_key=false", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d6469726563746f72790d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800000000000003ed55c16ea33010e5cc578cac3d246902c6109092cda97beda9fd01c771c1bb6023dba45a45f9f79581a489d22a2b2552572bdec5781e9ef10cf318263453d5ac6a4a2bea52704d4226346b840d584b79b703639c2609781847d91cbb15639274abe3b218bc289967491a6312a51e8eb20ca7e0e13bc4be8ac658aa3d7c73ac2e1738aeff00de6b9a9dd5f714b5a67945a1fbd640021ce0a5ef8713ffa51006fa5600cbabbaa496032b38fb65c016d40203e19e381c9a87512b9404f50a14a8dcc03af09f55a31987d113d5ac80884c8160128f17e017d6d66611861bc54cdf6a815061cead15329fb9af62f9267cd3a2ddf73731e1df1e64aaaa45797e741202f8fe3199a7f7a687d118768e048030841f9c95541fd3312297b4340180e3bb1d08593716e8f203e3fadca81aebac6cf91ee05149633515d21ebc32f8be5a018549777aeffb2e0325b9b450512161757adfd178e9dfa547d8a5fedb1c829f46c9bb44b8aa7f4c22a7ff34c5594a48829dfe714a06fddf8a434de3383eabef297688a2059aa3295aa3054ad0fecb6e3be02bf081fe8d901b2deef803b8a2ff98908bf94fa241ff37e35853823f9dff3b1f007d33ace015450b4087e9da3701adeb90d622dc46bd655651295eb9b1b3ee4cdb2668eabc485a71e7e2b2a53abe9fc32fbfeb93d77aaad1dbd6b896649e74b65aabad90f9b30bd372b956b688d28e7d135672631edb29cf75ebf0e101f9fbfb8cc50103060cf8eff1071f88574c001000000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, "response": { - "circuit_id": "dcc44a41-540f-4ebe-949d-ad7b26e58816", + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.848Z", + "date_created": "2024-08-21T23:45:34.915Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Queued", "tags": [ - "from-tarball" + "from-directory" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.878058S", - "queue_time_sec": 0.878058, - "uploaded_file_name": "circom-multiplier2.tgz", + "file_size": 556, + "queue_time": null, + "queue_time_sec": null, + "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": false, "has_verification_key": false, "verification_key": null, @@ -2176,17 +19099,17 @@ }, "rawHeaders": [ "Content-Length", - "944", + "913", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:50 GMT", + "Wed, 21 Aug 2024 23:45:36 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2200,33 +19123,33 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/8585a51c-3f3b-4a16-8cc8-05a0eb22abb3/detail?include_verification_key=false", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a73646b2d6372656174652d70726f6f662d6d756c7469706c696572322d636972637569740d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e7461722e677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b0800000000000003ed55c16ea33010e5cc578cac3d246902c6109092cda97beda9fd01c771c1bb6023dba45a45f9f79581a489d22a2b2552572bdec5781e9ef10cf318263453d5ac6a4a2bea52704d4226346b840d584b79b703639c2609781847d91cbb15639274abe3b218bc289967491a6312a51e8eb20ca7e0e13bc4be8ac658aa3d7c73ac2e1738aeff00de6b9a9dd5f714b5a67945a1fbd640021ce0a5ef8713ffa51006fa5600cbabbaa496032b38fb65c016d40203e19e381c9a87512b9404f50a14a8dcc03af09f55a31987d113d5ac80884c8160128f17e017d6d66611861bc54cdf6a815061cead15329fb9af62f9267cd3a2ddf73731e1df1e64aaaa45797e741202f8fe3199a7f7a687d118768e048030841f9c95541fd3312297b4340180e3bb1d08593716e8f203e3fadca81aebac6cf91ee05149633515d21ebc32f8be5a018549777aeffb2e0325b9b450512161757adfd178e9dfa547d8a5fedb1c829f46c9bb44b8aa7f4c22a7ff34c5594a48829dfe714a06fddf8a434de3383eabef297688a2059aa3295aa3054ad0fecb6e3be02bf081fe8d901b2deef803b8a2ff98908bf94fa241ff37e35853823f9dff3b1f007d33ace015450b4087e9da3701adeb90d622dc46bd655651295eb9b1b3ee4cdb2668eabc485a71e7e2b2a53abe9fc32fbfeb93d77aaad1dbd6b896649e74b65aabad90f9b30bd372b956b688d28e7d135672631edb29cf75ebf0e101f9fbfb8cc50103060cf8eff1071f88574c001000000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, "response": { - "circuit_id": "8585a51c-3f3b-4a16-8cc8-05a0eb22abb3", + "circuit_id": "01574955-62ba-440d-9984-baa5ff70a924", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.491Z", + "date_created": "2024-08-21T23:45:34.475Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Queued", "tags": [ - "from-file-array" + "sdk-create-proof-multiplier2-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.491580S", - "queue_time_sec": 1.49158, + "file_size": 556, + "queue_time": null, + "queue_time_sec": null, "uploaded_file_name": "circom-multiplier2.tar.gz", "has_smart_contract_verifier": false, "has_verification_key": false, @@ -2241,17 +19164,17 @@ }, "rawHeaders": [ "Content-Length", - "949", + "935", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:50 GMT", + "Wed, 21 Aug 2024 23:45:36 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2266,57 +19189,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/a2b5d905-5f79-4d0c-bc24-086e17b33f40/detail?include_verification_key=false", + "path": "/api/v1/circuit/fc173dcc-3696-4d86-adab-594d77bdbfdd/status", "body": "", "status": 200, "response": { - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.493Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.773657S", - "queue_time_sec": 0.773657, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:51 GMT", + "Wed, 21 Aug 2024 23:45:36 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2331,57 +19223,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/991c35b0-5da2-4baf-ae42-be2480d98458/detail?include_verification_key=false", + "path": "/api/v1/circuit/01574955-62ba-440d-9984-baa5ff70a924/status", "body": "", "status": 200, "response": { - "circuit_id": "991c35b0-5da2-4baf-ae42-be2480d98458", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.489Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.332778S", - "queue_time_sec": 0.332778, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "01574955-62ba-440d-9984-baa5ff70a924", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "962", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:51 GMT", + "Wed, 21 Aug 2024 23:45:36 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2395,34 +19256,34 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/42244641-5311-4335-ba6f-45f8be17e8ad/detail?include_verification_key=false", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/create", + "body": "2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2274616773220d0a0d0a66726f6d2d74617262616c6c2d666f722d6765742d70726f6f660d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d226d657461220d0a0d0a7b7d0d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839640d0a436f6e74656e742d446973706f736974696f6e3a20666f726d2d646174613b206e616d653d2266696c6573223b2066696c656e616d653d22636972636f6d2d6d756c7469706c696572322e74677a220d0a436f6e74656e742d547970653a206170706c69636174696f6e2f6f637465742d73747265616d0d0a0d0a1f8b080091e8a2650003ed54cd6ee23010e69ca718a13d002db1317122c172ea5e7b6a5fc018937837b12ddba15a557df74de2405b95b67b405ba1e5bb4c32fff67c632e2dd7d5b4aa4b2f4d29852568706a608c334aa1936990982441f680594229a6094db314f08c66840e809ebc9323a89d67b669c53195b3522af18e5fe3b6dd7e90a73fc7419e09f8dbf93ba93656c63f9d56a7a9d1dc479a24efcf7f4ec87efe4986e78049e3381f003e4df98ff19fcfff3102187e73bc10151b2e6058786fdc02ed49c08c41cc48b49bf59a69c594dc0ae7a721a6a3c9f0bacda25825da146f2915ecadbe96fefeb779e1d69b6abbeb946b45681274c6ea9d54f95d5ba6b3e556fb629606eb83f44a3877a32b234b61bb845757c3e829faea1b3d2f1cd9ff7e4e71309da0c667fb9f66f37effd38484fda734bdecffbf80b12caf1884590389718c97518426d17d211df454002f2a53322fa05946fecb812f98070eb2fd12b0270f675e6a057a0b0c98dac03a8eee746db980d12db3bc8019b90682c97cbc8068ffd06c34773dd562a9512ebc6fb67eda4ec58b0d7ab0b2fbef3b71e86f0379f732bc0e9d2080283a1ce6f699f4301ac3636b040084e087e025b387e338992b56bab87168ece10fa432b507b63ca25cbf56eadab75abe7c2e70a395f39649e5f759397c5fad9a8b9b84e8a7c6b33d82564279a81a4f58bd6c78345e7e35752eb8e08233c71f60b9d96f000e00000d0a2d2d2d2d2d2d5765624b6974466f726d426f756e64617279306275513864364568576373395839642d2d0d0a0d0a", + "status": 201, "response": { - "circuit_id": "42244641-5311-4335-ba6f-45f8be17e8ad", + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.488Z", + "date_created": "2024-08-21T23:45:34.912Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Queued", "tags": [ - "sdk-create-proof-multiplier2-circuit" + "from-tarball-for-get-proof" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.444749S", - "queue_time_sec": 0.444749, - "uploaded_file_name": "circom-multiplier2.tar.gz", + "file_size": 529, + "queue_time": null, + "queue_time_sec": null, + "uploaded_file_name": "circom-multiplier2.tgz", "has_smart_contract_verifier": false, "has_verification_key": false, "verification_key": null, @@ -2436,82 +19297,51 @@ }, "rawHeaders": [ "Content-Length", - "971", + "922", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:51 GMT", + "Wed, 21 Aug 2024 23:45:37 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/088af0b5-7219-493d-9299-80cba9801fcb/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "088af0b5-7219-493d-9299-80cba9801fcb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.789Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.309653S", - "queue_time_sec": 0.309653, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/76a8ec52-691a-4c7c-ae2c-3a4961bfac7e/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "76a8ec52-691a-4c7c-ae2c-3a4961bfac7e", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "960", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:51 GMT", + "Wed, 21 Aug 2024 23:45:37 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2526,57 +19356,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/e17b8bc6-b716-4996-8040-2a2521ed79ab/detail?include_verification_key=false", + "path": "/api/v1/circuit/e698a24e-351f-448a-8116-1a50bca6cb67/status", "body": "", "status": 200, "response": { - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.560Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.389084S", - "queue_time_sec": 0.389084, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "e698a24e-351f-448a-8116-1a50bca6cb67", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "967", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:51 GMT", + "Wed, 21 Aug 2024 23:45:37 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2591,57 +19390,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/b72ea400-2d09-49b4-a404-2c22d5c130a1/detail?include_verification_key=false", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", "body": "", "status": 200, "response": { - "circuit_id": "b72ea400-2d09-49b4-a404-2c22d5c130a1", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.745Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-directory" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.929848S", - "queue_time_sec": 0.929848, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "949", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:51 GMT", + "Wed, 21 Aug 2024 23:45:38 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2656,57 +19424,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/dcc44a41-540f-4ebe-949d-ad7b26e58816/detail?include_verification_key=false", + "path": "/api/v1/circuit/1c459443-df9d-46b1-a0e1-50b5d0cbc5ab/status", "body": "", "status": 200, "response": { - "circuit_id": "dcc44a41-540f-4ebe-949d-ad7b26e58816", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.848Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.878058S", - "queue_time_sec": 0.878058, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "1c459443-df9d-46b1-a0e1-50b5d0cbc5ab", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "944", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:51 GMT", + "Wed, 21 Aug 2024 23:45:38 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2721,57 +19458,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8585a51c-3f3b-4a16-8cc8-05a0eb22abb3/detail?include_verification_key=false", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/status", "body": "", "status": 200, "response": { - "circuit_id": "8585a51c-3f3b-4a16-8cc8-05a0eb22abb3", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.491Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.491580S", - "queue_time_sec": 1.49158, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "949", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:52 GMT", + "Wed, 21 Aug 2024 23:45:38 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2786,57 +19492,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/a2b5d905-5f79-4d0c-bc24-086e17b33f40/detail?include_verification_key=false", + "path": "/api/v1/circuit/fc173dcc-3696-4d86-adab-594d77bdbfdd/status", "body": "", "status": 200, "response": { - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.493Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.773657S", - "queue_time_sec": 0.773657, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:52 GMT", + "Wed, 21 Aug 2024 23:45:38 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2851,57 +19526,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/991c35b0-5da2-4baf-ae42-be2480d98458/detail?include_verification_key=false", + "path": "/api/v1/circuit/01574955-62ba-440d-9984-baa5ff70a924/status", "body": "", "status": 200, "response": { - "circuit_id": "991c35b0-5da2-4baf-ae42-be2480d98458", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.489Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.332778S", - "queue_time_sec": 0.332778, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "01574955-62ba-440d-9984-baa5ff70a924", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "962", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:53 GMT", + "Wed, 21 Aug 2024 23:45:38 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2916,57 +19560,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/42244641-5311-4335-ba6f-45f8be17e8ad/detail?include_verification_key=false", + "path": "/api/v1/circuit/451ef924-1cb3-4a5f-b5ef-48a295880052/status", "body": "", "status": 200, "response": { - "circuit_id": "42244641-5311-4335-ba6f-45f8be17e8ad", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.488Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "sdk-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.444749S", - "queue_time_sec": 0.444749, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "451ef924-1cb3-4a5f-b5ef-48a295880052", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "971", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:53 GMT", + "Wed, 21 Aug 2024 23:45:38 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -2981,57 +19594,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/e17b8bc6-b716-4996-8040-2a2521ed79ab/detail?include_verification_key=false", + "path": "/api/v1/circuit/e698a24e-351f-448a-8116-1a50bca6cb67/status", "body": "", "status": 200, "response": { - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.560Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.389084S", - "queue_time_sec": 0.389084, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "e698a24e-351f-448a-8116-1a50bca6cb67", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "967", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:53 GMT", + "Wed, 21 Aug 2024 23:45:39 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3046,57 +19628,60 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/088af0b5-7219-493d-9299-80cba9801fcb/detail?include_verification_key=false", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", "body": "", "status": 200, "response": { - "circuit_id": "088af0b5-7219-493d-9299-80cba9801fcb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.789Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.309653S", - "queue_time_sec": 0.309653, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:39 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/76a8ec52-691a-4c7c-ae2c-3a4961bfac7e/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "76a8ec52-691a-4c7c-ae2c-3a4961bfac7e", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "960", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:53 GMT", + "Wed, 21 Aug 2024 23:45:39 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3111,57 +19696,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/b72ea400-2d09-49b4-a404-2c22d5c130a1/detail?include_verification_key=false", + "path": "/api/v1/circuit/1c459443-df9d-46b1-a0e1-50b5d0cbc5ab/status", "body": "", "status": 200, "response": { - "circuit_id": "b72ea400-2d09-49b4-a404-2c22d5c130a1", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.745Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-directory" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.929848S", - "queue_time_sec": 0.929848, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "1c459443-df9d-46b1-a0e1-50b5d0cbc5ab", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "949", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:53 GMT", + "Wed, 21 Aug 2024 23:45:40 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3176,57 +19730,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/dcc44a41-540f-4ebe-949d-ad7b26e58816/detail?include_verification_key=false", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/status", "body": "", "status": 200, "response": { - "circuit_id": "dcc44a41-540f-4ebe-949d-ad7b26e58816", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.848Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.878058S", - "queue_time_sec": 0.878058, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "944", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:53 GMT", + "Wed, 21 Aug 2024 23:45:40 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3241,57 +19764,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8585a51c-3f3b-4a16-8cc8-05a0eb22abb3/detail?include_verification_key=false", + "path": "/api/v1/circuit/01574955-62ba-440d-9984-baa5ff70a924/status", "body": "", "status": 200, "response": { - "circuit_id": "8585a51c-3f3b-4a16-8cc8-05a0eb22abb3", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.491Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.491580S", - "queue_time_sec": 1.49158, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "01574955-62ba-440d-9984-baa5ff70a924", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "949", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:53 GMT", + "Wed, 21 Aug 2024 23:45:40 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3306,57 +19798,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/a2b5d905-5f79-4d0c-bc24-086e17b33f40/detail?include_verification_key=false", + "path": "/api/v1/circuit/e698a24e-351f-448a-8116-1a50bca6cb67/status", "body": "", "status": 200, "response": { - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.493Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.773657S", - "queue_time_sec": 0.773657, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "e698a24e-351f-448a-8116-1a50bca6cb67", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "958", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:54 GMT", + "Wed, 21 Aug 2024 23:45:40 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3371,57 +19832,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/991c35b0-5da2-4baf-ae42-be2480d98458/detail?include_verification_key=false", + "path": "/api/v1/circuit/451ef924-1cb3-4a5f-b5ef-48a295880052/status", "body": "", "status": 200, "response": { - "circuit_id": "991c35b0-5da2-4baf-ae42-be2480d98458", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.489Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.332778S", - "queue_time_sec": 0.332778, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "451ef924-1cb3-4a5f-b5ef-48a295880052", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "962", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:54 GMT", + "Wed, 21 Aug 2024 23:45:41 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3436,57 +19866,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/42244641-5311-4335-ba6f-45f8be17e8ad/detail?include_verification_key=false", + "path": "/api/v1/circuit/fc173dcc-3696-4d86-adab-594d77bdbfdd/status", "body": "", "status": 200, "response": { - "circuit_id": "42244641-5311-4335-ba6f-45f8be17e8ad", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.488Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "sdk-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.444749S", - "queue_time_sec": 0.444749, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "971", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:54 GMT", + "Wed, 21 Aug 2024 23:45:41 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3501,57 +19900,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/e17b8bc6-b716-4996-8040-2a2521ed79ab/detail?include_verification_key=false", + "path": "/api/v1/circuit/76a8ec52-691a-4c7c-ae2c-3a4961bfac7e/status", "body": "", "status": 200, "response": { - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.560Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.389084S", - "queue_time_sec": 0.389084, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "76a8ec52-691a-4c7c-ae2c-3a4961bfac7e", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "967", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:54 GMT", + "Wed, 21 Aug 2024 23:45:41 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3566,57 +19934,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/088af0b5-7219-493d-9299-80cba9801fcb/detail?include_verification_key=false", + "path": "/api/v1/circuit/1c459443-df9d-46b1-a0e1-50b5d0cbc5ab/status", "body": "", "status": 200, "response": { - "circuit_id": "088af0b5-7219-493d-9299-80cba9801fcb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.789Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.309653S", - "queue_time_sec": 0.309653, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "1c459443-df9d-46b1-a0e1-50b5d0cbc5ab", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "960", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:54 GMT", + "Wed, 21 Aug 2024 23:45:42 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3631,57 +19968,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/b72ea400-2d09-49b4-a404-2c22d5c130a1/detail?include_verification_key=false", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", "body": "", "status": 200, "response": { - "circuit_id": "b72ea400-2d09-49b4-a404-2c22d5c130a1", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.745Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-directory" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.929848S", - "queue_time_sec": 0.929848, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "949", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:54 GMT", + "Wed, 21 Aug 2024 23:45:42 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3696,57 +20002,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/dcc44a41-540f-4ebe-949d-ad7b26e58816/detail?include_verification_key=false", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/status", "body": "", "status": 200, "response": { - "circuit_id": "dcc44a41-540f-4ebe-949d-ad7b26e58816", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.848Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.878058S", - "queue_time_sec": 0.878058, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "944", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:54 GMT", + "Wed, 21 Aug 2024 23:45:42 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3761,57 +20036,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8585a51c-3f3b-4a16-8cc8-05a0eb22abb3/detail?include_verification_key=false", + "path": "/api/v1/circuit/451ef924-1cb3-4a5f-b5ef-48a295880052/status", "body": "", "status": 200, "response": { - "circuit_id": "8585a51c-3f3b-4a16-8cc8-05a0eb22abb3", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.491Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.491580S", - "queue_time_sec": 1.49158, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "451ef924-1cb3-4a5f-b5ef-48a295880052", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "949", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:54 GMT", + "Wed, 21 Aug 2024 23:45:42 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3826,57 +20070,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/a2b5d905-5f79-4d0c-bc24-086e17b33f40/detail?include_verification_key=false", + "path": "/api/v1/circuit/01574955-62ba-440d-9984-baa5ff70a924/status", "body": "", "status": 200, "response": { - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.493Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.773657S", - "queue_time_sec": 0.773657, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "01574955-62ba-440d-9984-baa5ff70a924", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:55 GMT", + "Wed, 21 Aug 2024 23:45:42 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3891,57 +20104,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/991c35b0-5da2-4baf-ae42-be2480d98458/detail?include_verification_key=false", + "path": "/api/v1/circuit/fc173dcc-3696-4d86-adab-594d77bdbfdd/status", "body": "", "status": 200, "response": { - "circuit_id": "991c35b0-5da2-4baf-ae42-be2480d98458", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.489Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.332778S", - "queue_time_sec": 0.332778, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "962", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:55 GMT", + "Wed, 21 Aug 2024 23:45:42 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -3956,57 +20138,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/42244641-5311-4335-ba6f-45f8be17e8ad/detail?include_verification_key=false", + "path": "/api/v1/circuit/e698a24e-351f-448a-8116-1a50bca6cb67/status", "body": "", "status": 200, "response": { - "circuit_id": "42244641-5311-4335-ba6f-45f8be17e8ad", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.488Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "sdk-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.444749S", - "queue_time_sec": 0.444749, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "e698a24e-351f-448a-8116-1a50bca6cb67", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "971", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:55 GMT", + "Wed, 21 Aug 2024 23:45:42 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4021,57 +20172,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/e17b8bc6-b716-4996-8040-2a2521ed79ab/detail?include_verification_key=false", + "path": "/api/v1/circuit/76a8ec52-691a-4c7c-ae2c-3a4961bfac7e/status", "body": "", "status": 200, "response": { - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.560Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.389084S", - "queue_time_sec": 0.389084, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "76a8ec52-691a-4c7c-ae2c-3a4961bfac7e", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "967", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:55 GMT", + "Wed, 21 Aug 2024 23:45:42 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4086,57 +20206,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/088af0b5-7219-493d-9299-80cba9801fcb/detail?include_verification_key=false", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/status", "body": "", "status": 200, "response": { - "circuit_id": "088af0b5-7219-493d-9299-80cba9801fcb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.789Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.309653S", - "queue_time_sec": 0.309653, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "960", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:55 GMT", + "Wed, 21 Aug 2024 23:45:43 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4151,57 +20240,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/b72ea400-2d09-49b4-a404-2c22d5c130a1/detail?include_verification_key=false", + "path": "/api/v1/circuit/1c459443-df9d-46b1-a0e1-50b5d0cbc5ab/status", "body": "", "status": 200, "response": { - "circuit_id": "b72ea400-2d09-49b4-a404-2c22d5c130a1", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.745Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-directory" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.929848S", - "queue_time_sec": 0.929848, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "1c459443-df9d-46b1-a0e1-50b5d0cbc5ab", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "949", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:55 GMT", + "Wed, 21 Aug 2024 23:45:43 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4216,57 +20274,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/dcc44a41-540f-4ebe-949d-ad7b26e58816/detail?include_verification_key=false", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", "body": "", "status": 200, "response": { - "circuit_id": "dcc44a41-540f-4ebe-949d-ad7b26e58816", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.848Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.878058S", - "queue_time_sec": 0.878058, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "944", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:55 GMT", + "Wed, 21 Aug 2024 23:45:44 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4281,57 +20308,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8585a51c-3f3b-4a16-8cc8-05a0eb22abb3/detail?include_verification_key=false", + "path": "/api/v1/circuit/fc173dcc-3696-4d86-adab-594d77bdbfdd/status", "body": "", "status": 200, "response": { - "circuit_id": "8585a51c-3f3b-4a16-8cc8-05a0eb22abb3", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.491Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.491580S", - "queue_time_sec": 1.49158, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "949", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:56 GMT", + "Wed, 21 Aug 2024 23:45:44 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4346,57 +20342,60 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/a2b5d905-5f79-4d0c-bc24-086e17b33f40/detail?include_verification_key=false", + "path": "/api/v1/circuit/76a8ec52-691a-4c7c-ae2c-3a4961bfac7e/status", "body": "", "status": 200, "response": { - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.493Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.773657S", - "queue_time_sec": 0.773657, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "76a8ec52-691a-4c7c-ae2c-3a4961bfac7e", + "status": "Ready" + }, + "rawHeaders": [ + "Content-Length", + "73", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:44 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/451ef924-1cb3-4a5f-b5ef-48a295880052/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "451ef924-1cb3-4a5f-b5ef-48a295880052", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:56 GMT", + "Wed, 21 Aug 2024 23:45:44 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4411,57 +20410,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/991c35b0-5da2-4baf-ae42-be2480d98458/detail?include_verification_key=false", + "path": "/api/v1/circuit/e698a24e-351f-448a-8116-1a50bca6cb67/status", "body": "", "status": 200, "response": { - "circuit_id": "991c35b0-5da2-4baf-ae42-be2480d98458", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.489Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.332778S", - "queue_time_sec": 0.332778, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "e698a24e-351f-448a-8116-1a50bca6cb67", + "status": "Ready" }, "rawHeaders": [ "Content-Length", - "962", + "73", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:56 GMT", + "Wed, 21 Aug 2024 23:45:44 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4476,57 +20444,70 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/42244641-5311-4335-ba6f-45f8be17e8ad/detail?include_verification_key=false", + "path": "/api/v1/circuit/e698a24e-351f-448a-8116-1a50bca6cb67/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "42244641-5311-4335-ba6f-45f8be17e8ad", + "circuit_id": "e698a24e-351f-448a-8116-1a50bca6cb67", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.488Z", + "date_created": "2024-08-21T23:45:34.429Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Ready", "tags": [ - "sdk-create-proof-multiplier2-circuit" + "from-tarball" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.444749S", - "queue_time_sec": 0.444749, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.103277S", + "compute_time_sec": 7.103277, + "compute_times": { + "total": 7.11701, + "clean_up": 0.01373, + "create_cpp": 0.14535, + "file_setup": 0.54272, + "compile_cpp": 3.29641, + "create_r1cs": 0.00876, + "save_results": 0.68218, + "get_r1cs_info": 0.0002, + "groth16_setup": 0.80794, + "export_verification_key": 0.83096, + "download_trusted_setup_file": 0.00101, + "solidity_contract_generation": 0.78774 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M01.435582S", + "queue_time_sec": 1.435582, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, "verification_key": null, "warnings": null, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "971", + "1262", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:57 GMT", + "Wed, 21 Aug 2024 23:45:45 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4541,57 +20522,70 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/e17b8bc6-b716-4996-8040-2a2521ed79ab/detail?include_verification_key=false", + "path": "/api/v1/circuit/76a8ec52-691a-4c7c-ae2c-3a4961bfac7e/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", + "circuit_id": "76a8ec52-691a-4c7c-ae2c-3a4961bfac7e", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.560Z", + "date_created": "2024-08-21T23:45:34.483Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Ready", "tags": [ - "from-tarball-for-all-circuit-proofs" + "from-tarball-for-get-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.389084S", - "queue_time_sec": 0.389084, + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.364104S", + "compute_time_sec": 7.364104, + "compute_times": { + "total": 7.3772, + "clean_up": 0.0131, + "create_cpp": 0.09099, + "file_setup": 0.4612, + "compile_cpp": 3.20124, + "create_r1cs": 0.00645, + "save_results": 0.67148, + "get_r1cs_info": 0.00021, + "groth16_setup": 0.97872, + "export_verification_key": 0.98436, + "download_trusted_setup_file": 0.0009, + "solidity_contract_generation": 0.96855 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M01.606472S", + "queue_time_sec": 1.606472, "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, + "has_smart_contract_verifier": true, + "has_verification_key": true, "verification_key": null, "warnings": null, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "967", + "1275", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:57 GMT", + "Wed, 21 Aug 2024 23:45:45 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4606,57 +20600,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/088af0b5-7219-493d-9299-80cba9801fcb/detail?include_verification_key=false", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/status", "body": "", "status": 200, "response": { - "circuit_id": "088af0b5-7219-493d-9299-80cba9801fcb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.789Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.309653S", - "queue_time_sec": 0.309653, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "960", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:57 GMT", + "Wed, 21 Aug 2024 23:45:45 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4671,57 +20634,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/dcc44a41-540f-4ebe-949d-ad7b26e58816/detail?include_verification_key=false", + "path": "/api/v1/circuit/01574955-62ba-440d-9984-baa5ff70a924/status", "body": "", "status": 200, "response": { - "circuit_id": "dcc44a41-540f-4ebe-949d-ad7b26e58816", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.848Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.878058S", - "queue_time_sec": 0.878058, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "01574955-62ba-440d-9984-baa5ff70a924", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "944", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:57 GMT", + "Wed, 21 Aug 2024 23:45:45 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4736,57 +20668,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8585a51c-3f3b-4a16-8cc8-05a0eb22abb3/detail?include_verification_key=false", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", "body": "", "status": 200, "response": { - "circuit_id": "8585a51c-3f3b-4a16-8cc8-05a0eb22abb3", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.491Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.491580S", - "queue_time_sec": 1.49158, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "949", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:57 GMT", + "Wed, 21 Aug 2024 23:45:45 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4801,57 +20702,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/a2b5d905-5f79-4d0c-bc24-086e17b33f40/detail?include_verification_key=false", + "path": "/api/v1/circuit/1c459443-df9d-46b1-a0e1-50b5d0cbc5ab/status", "body": "", "status": 200, "response": { - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.493Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.773657S", - "queue_time_sec": 0.773657, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "1c459443-df9d-46b1-a0e1-50b5d0cbc5ab", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:58 GMT", + "Wed, 21 Aug 2024 23:45:45 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4866,57 +20736,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/991c35b0-5da2-4baf-ae42-be2480d98458/detail?include_verification_key=false", + "path": "/api/v1/circuit/fc173dcc-3696-4d86-adab-594d77bdbfdd/status", "body": "", "status": 200, "response": { - "circuit_id": "991c35b0-5da2-4baf-ae42-be2480d98458", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.489Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.332778S", - "queue_time_sec": 0.332778, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "962", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:58 GMT", + "Wed, 21 Aug 2024 23:45:46 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4931,57 +20770,163 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/42244641-5311-4335-ba6f-45f8be17e8ad/detail?include_verification_key=false", + "path": "/api/v1/circuit/76a8ec52-691a-4c7c-ae2c-3a4961bfac7e/detail?include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "42244641-5311-4335-ba6f-45f8be17e8ad", + "circuit_id": "76a8ec52-691a-4c7c-ae2c-3a4961bfac7e", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.488Z", + "date_created": "2024-08-21T23:45:34.483Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Ready", "tags": [ - "sdk-create-proof-multiplier2-circuit" + "from-tarball-for-get-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.444749S", - "queue_time_sec": 0.444749, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.364104S", + "compute_time_sec": 7.364104, + "compute_times": { + "total": 7.3772, + "clean_up": 0.0131, + "create_cpp": 0.09099, + "file_setup": 0.4612, + "compile_cpp": 3.20124, + "create_r1cs": 0.00645, + "save_results": 0.67148, + "get_r1cs_info": 0.00021, + "groth16_setup": 0.97872, + "export_verification_key": 0.98436, + "download_trusted_setup_file": 0.0009, + "solidity_contract_generation": 0.96855 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M01.606472S", + "queue_time_sec": 1.606472, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, + "verification_key": { + "protocol": "groth16", + "curve": "bn128", + "nPublic": 1, + "vk_alpha_1": [ + "20491192805390485299153009773594534940189261866228447918068658471970481763042", + "9383485363053290200918347156157836566562967994039712273449902621266178545958", + "1" + ], + "vk_beta_2": [ + [ + "6375614351688725206403948262868962793625744043794305715222011528459656738731", + "4252822878758300859123897981450591353533073413197771768651442665752259397132" + ], + [ + "10505242626370262277552901082094356697409835680220590971873171140371331206856", + "21847035105528745403288232691147584728191162732299865338377159692350059136679" + ], + [ + "1", + "0" + ] + ], + "vk_gamma_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_delta_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_alphabeta_12": [ + [ + [ + "2029413683389138792403550203267699914886160938906632433982220835551125967885", + "21072700047562757817161031222997517981543347628379360635925549008442030252106" + ], + [ + "5940354580057074848093997050200682056184807770593307860589430076672439820312", + "12156638873931618554171829126792193045421052652279363021382169897324752428276" + ], + [ + "7898200236362823042373859371574133993780991612861777490112507062703164551277", + "7074218545237549455313236346927434013100842096812539264420499035217050630853" + ] + ], + [ + [ + "7077479683546002997211712695946002074877511277312570035766170199895071832130", + "10093483419865920389913245021038182291233451549023025229112148274109565435465" + ], + [ + "4595479056700221319381530156280926371456704509942304414423590385166031118820", + "19831328484489333784475432780421641293929726139240675179672856274388269393268" + ], + [ + "11934129596455521040620786944827826205713621633706285934057045369193958244500", + "8037395052364110730298837004334506829870972346962140206007064471173334027475" + ] + ] + ], + "IC": [ + [ + "6819801395408938350212900248749732364821477541620635511814266536599629892365", + "9092252330033992554755034971584864587974280972948086568597554018278609861372", + "1" + ], + [ + "17882351432929302592725330552407222299541667716607588771282887857165175611387", + "18907419617206324833977586007131055763810739835484972981819026406579664278293", + "1" + ] + ] + }, "warnings": null, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "971", + "3915", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:58 GMT", + "Wed, 21 Aug 2024 23:45:46 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -4996,57 +20941,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/e17b8bc6-b716-4996-8040-2a2521ed79ab/detail?include_verification_key=false", + "path": "/api/v1/circuit/451ef924-1cb3-4a5f-b5ef-48a295880052/status", "body": "", "status": 200, "response": { - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.560Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.389084S", - "queue_time_sec": 0.389084, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "451ef924-1cb3-4a5f-b5ef-48a295880052", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "967", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:58 GMT", + "Wed, 21 Aug 2024 23:45:46 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5061,57 +20975,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/088af0b5-7219-493d-9299-80cba9801fcb/detail?include_verification_key=false", + "path": "/api/v1/circuit/01574955-62ba-440d-9984-baa5ff70a924/status", "body": "", "status": 200, "response": { - "circuit_id": "088af0b5-7219-493d-9299-80cba9801fcb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.789Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.309653S", - "queue_time_sec": 0.309653, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "01574955-62ba-440d-9984-baa5ff70a924", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "960", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:58 GMT", + "Wed, 21 Aug 2024 23:45:47 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5126,57 +21009,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/dcc44a41-540f-4ebe-949d-ad7b26e58816/detail?include_verification_key=false", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/status", "body": "", "status": 200, "response": { - "circuit_id": "dcc44a41-540f-4ebe-949d-ad7b26e58816", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.848Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.878058S", - "queue_time_sec": 0.878058, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "944", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:58 GMT", + "Wed, 21 Aug 2024 23:45:47 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5191,57 +21043,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8585a51c-3f3b-4a16-8cc8-05a0eb22abb3/detail?include_verification_key=false", + "path": "/api/v1/circuit/fc173dcc-3696-4d86-adab-594d77bdbfdd/status", "body": "", "status": 200, "response": { - "circuit_id": "8585a51c-3f3b-4a16-8cc8-05a0eb22abb3", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.491Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.491580S", - "queue_time_sec": 1.49158, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "949", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:58 GMT", + "Wed, 21 Aug 2024 23:45:47 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5256,57 +21077,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/a2b5d905-5f79-4d0c-bc24-086e17b33f40/detail?include_verification_key=false", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", "body": "", "status": 200, "response": { - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.493Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.773657S", - "queue_time_sec": 0.773657, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:59 GMT", + "Wed, 21 Aug 2024 23:45:47 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5321,70 +21111,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/991c35b0-5da2-4baf-ae42-be2480d98458/detail?include_verification_key=false", + "path": "/api/v1/circuit/1c459443-df9d-46b1-a0e1-50b5d0cbc5ab/status", "body": "", "status": 200, "response": { - "circuit_id": "991c35b0-5da2-4baf-ae42-be2480d98458", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.489Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Ready", - "tags": [ - "from-tarball-for-prove-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M09.672958S", - "compute_time_sec": 9.672958, - "compute_times": { - "total": 9.71891, - "clean_up": 0.04595, - "create_cpp": 0.15201, - "file_setup": 0.598, - "compile_cpp": 4.30213, - "create_r1cs": 0.01043, - "save_results": 1.80319, - "get_r1cs_info": 0.00033, - "groth16_setup": 0.92488, - "export_verification_key": 0.93086, - "download_trusted_setup_file": 0.00162, - "solidity_contract_generation": 0.9495 - }, - "file_size": 236732, - "queue_time": "P0DT00H00M00.332778S", - "queue_time_sec": 0.332778, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": true, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "circuit_id": "1c459443-df9d-46b1-a0e1-50b5d0cbc5ab", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "1287", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:59 GMT", + "Wed, 21 Aug 2024 23:45:47 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5397,59 +21143,28 @@ "responseIsBinary": false }, { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/42244641-5311-4335-ba6f-45f8be17e8ad/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "42244641-5311-4335-ba6f-45f8be17e8ad", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.488Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "sdk-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.444749S", - "queue_time_sec": 0.444749, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/451ef924-1cb3-4a5f-b5ef-48a295880052/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "451ef924-1cb3-4a5f-b5ef-48a295880052", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "971", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:59 GMT", + "Wed, 21 Aug 2024 23:45:48 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5464,57 +21179,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/e17b8bc6-b716-4996-8040-2a2521ed79ab/detail?include_verification_key=false", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", "body": "", "status": 200, "response": { - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.560Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.389084S", - "queue_time_sec": 0.389084, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "967", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:59 GMT", + "Wed, 21 Aug 2024 23:45:49 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5529,57 +21213,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/088af0b5-7219-493d-9299-80cba9801fcb/detail?include_verification_key=false", + "path": "/api/v1/circuit/1c459443-df9d-46b1-a0e1-50b5d0cbc5ab/status", "body": "", "status": 200, "response": { - "circuit_id": "088af0b5-7219-493d-9299-80cba9801fcb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.789Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.309653S", - "queue_time_sec": 0.309653, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "1c459443-df9d-46b1-a0e1-50b5d0cbc5ab", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "960", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:59 GMT", + "Wed, 21 Aug 2024 23:45:49 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5594,57 +21247,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/dcc44a41-540f-4ebe-949d-ad7b26e58816/detail?include_verification_key=false", + "path": "/api/v1/circuit/01574955-62ba-440d-9984-baa5ff70a924/status", "body": "", "status": 200, "response": { - "circuit_id": "dcc44a41-540f-4ebe-949d-ad7b26e58816", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.848Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.878058S", - "queue_time_sec": 0.878058, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "01574955-62ba-440d-9984-baa5ff70a924", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "944", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:03:59 GMT", + "Wed, 21 Aug 2024 23:45:49 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5659,57 +21281,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8585a51c-3f3b-4a16-8cc8-05a0eb22abb3/detail?include_verification_key=false", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/status", "body": "", "status": 200, "response": { - "circuit_id": "8585a51c-3f3b-4a16-8cc8-05a0eb22abb3", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.491Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.491580S", - "queue_time_sec": 1.49158, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "949", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:00 GMT", + "Wed, 21 Aug 2024 23:45:49 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5723,54 +21314,27 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/991c35b0-5da2-4baf-ae42-be2480d98458/prove", - "body": "------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"meta\"\r\n\r\n{}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d--\r\n\r\n", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/451ef924-1cb3-4a5f-b5ef-48a295880052/status", + "body": "", + "status": 200, "response": { - "proof_id": "f3d8cb4d-096d-4da7-88e9-89c7f638be13", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "991c35b0-5da2-4baf-ae42-be2480d98458", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:59.886Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "451ef924-1cb3-4a5f-b5ef-48a295880052", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "994", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:00 GMT", + "Wed, 21 Aug 2024 23:45:49 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5785,57 +21349,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/b72ea400-2d09-49b4-a404-2c22d5c130a1/detail?include_verification_key=false", + "path": "/api/v1/circuit/fc173dcc-3696-4d86-adab-594d77bdbfdd/status", "body": "", "status": 200, "response": { - "circuit_id": "b72ea400-2d09-49b4-a404-2c22d5c130a1", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.745Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-directory" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.929848S", - "queue_time_sec": 0.929848, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "949", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:00 GMT", + "Wed, 21 Aug 2024 23:45:49 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5850,53 +21383,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/f3d8cb4d-096d-4da7-88e9-89c7f638be13/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", "body": "", "status": 200, "response": { - "proof_id": "f3d8cb4d-096d-4da7-88e9-89c7f638be13", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "991c35b0-5da2-4baf-ae42-be2480d98458", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:59.886Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "994", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:00 GMT", + "Wed, 21 Aug 2024 23:45:50 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5911,57 +21417,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/a2b5d905-5f79-4d0c-bc24-086e17b33f40/detail?include_verification_key=false", + "path": "/api/v1/circuit/1c459443-df9d-46b1-a0e1-50b5d0cbc5ab/status", "body": "", "status": 200, "response": { - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.493Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.773657S", - "queue_time_sec": 0.773657, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "1c459443-df9d-46b1-a0e1-50b5d0cbc5ab", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:00 GMT", + "Wed, 21 Aug 2024 23:45:50 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -5976,70 +21451,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/42244641-5311-4335-ba6f-45f8be17e8ad/detail?include_verification_key=false", + "path": "/api/v1/circuit/fc173dcc-3696-4d86-adab-594d77bdbfdd/status", "body": "", "status": 200, "response": { - "circuit_id": "42244641-5311-4335-ba6f-45f8be17e8ad", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.488Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Ready", - "tags": [ - "sdk-create-proof-multiplier2-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M11.898807S", - "compute_time_sec": 11.898807, - "compute_times": { - "total": 11.93349, - "clean_up": 0.03469, - "create_cpp": 0.19368, - "file_setup": 0.60848, - "compile_cpp": 5.10363, - "create_r1cs": 0.03649, - "save_results": 1.56433, - "get_r1cs_info": 0.00048, - "groth16_setup": 1.42912, - "export_verification_key": 1.48569, - "download_trusted_setup_file": 0.0014, - "solidity_contract_generation": 1.47551 - }, - "file_size": 236758, - "queue_time": "P0DT00H00M00.444749S", - "queue_time_sec": 0.444749, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": true, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "1300", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:01 GMT", + "Wed, 21 Aug 2024 23:45:51 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6054,57 +21485,60 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/e17b8bc6-b716-4996-8040-2a2521ed79ab/detail?include_verification_key=false", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/status", "body": "", "status": 200, "response": { - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.560Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.389084S", - "queue_time_sec": 0.389084, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:51 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/451ef924-1cb3-4a5f-b5ef-48a295880052/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "451ef924-1cb3-4a5f-b5ef-48a295880052", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "967", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:01 GMT", + "Wed, 21 Aug 2024 23:45:51 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6119,70 +21553,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/088af0b5-7219-493d-9299-80cba9801fcb/detail?include_verification_key=false", + "path": "/api/v1/circuit/01574955-62ba-440d-9984-baa5ff70a924/status", "body": "", "status": 200, "response": { - "circuit_id": "088af0b5-7219-493d-9299-80cba9801fcb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.789Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Ready", - "tags": [ - "from-tarball-for-get-circuit" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M11.439396S", - "compute_time_sec": 11.439396, - "compute_times": { - "total": 11.48178, - "clean_up": 0.04239, - "create_cpp": 0.14529, - "file_setup": 0.64122, - "compile_cpp": 5.26496, - "create_r1cs": 0.01945, - "save_results": 1.73118, - "get_r1cs_info": 0.00063, - "groth16_setup": 1.18458, - "export_verification_key": 1.25427, - "download_trusted_setup_file": 0.00275, - "solidity_contract_generation": 1.19505 - }, - "file_size": 236732, - "queue_time": "P0DT00H00M00.309653S", - "queue_time_sec": 0.309653, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": true, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "circuit_id": "01574955-62ba-440d-9984-baa5ff70a924", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "1290", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:01 GMT", + "Wed, 21 Aug 2024 23:45:52 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6197,57 +21587,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/dcc44a41-540f-4ebe-949d-ad7b26e58816/detail?include_verification_key=false", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", "body": "", "status": 200, "response": { - "circuit_id": "dcc44a41-540f-4ebe-949d-ad7b26e58816", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.848Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.878058S", - "queue_time_sec": 0.878058, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "944", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:01 GMT", + "Wed, 21 Aug 2024 23:45:52 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6262,57 +21621,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8585a51c-3f3b-4a16-8cc8-05a0eb22abb3/detail?include_verification_key=false", + "path": "/api/v1/circuit/1c459443-df9d-46b1-a0e1-50b5d0cbc5ab/status", "body": "", "status": 200, "response": { - "circuit_id": "8585a51c-3f3b-4a16-8cc8-05a0eb22abb3", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.491Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.491580S", - "queue_time_sec": 1.49158, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "1c459443-df9d-46b1-a0e1-50b5d0cbc5ab", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "949", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:01 GMT", + "Wed, 21 Aug 2024 23:45:52 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6326,54 +21654,27 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/circom-multiplier2:sdk-create-proof-multiplier2-circuit/prove", - "body": "------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"meta\"\r\n\r\n{}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d--\r\n\r\n", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/fc173dcc-3696-4d86-adab-594d77bdbfdd/status", + "body": "", + "status": 200, "response": { - "proof_id": "8db7ee1a-b9f4-4f0a-8110-da8a90f14a68", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "42244641-5311-4335-ba6f-45f8be17e8ad", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:01.323Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "994", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:01 GMT", + "Wed, 21 Aug 2024 23:45:53 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6388,57 +21689,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/b72ea400-2d09-49b4-a404-2c22d5c130a1/detail?include_verification_key=false", + "path": "/api/v1/circuit/451ef924-1cb3-4a5f-b5ef-48a295880052/status", "body": "", "status": 200, "response": { - "circuit_id": "b72ea400-2d09-49b4-a404-2c22d5c130a1", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.745Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-directory" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.929848S", - "queue_time_sec": 0.929848, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "451ef924-1cb3-4a5f-b5ef-48a295880052", + "status": "Ready" }, "rawHeaders": [ "Content-Length", - "949", + "73", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:01 GMT", + "Wed, 21 Aug 2024 23:45:53 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6453,142 +21723,49 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/088af0b5-7219-493d-9299-80cba9801fcb/detail?include_verification_key=true", + "path": "/api/v1/circuit/451ef924-1cb3-4a5f-b5ef-48a295880052/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "088af0b5-7219-493d-9299-80cba9801fcb", + "circuit_id": "451ef924-1cb3-4a5f-b5ef-48a295880052", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.789Z", + "date_created": "2024-08-21T23:45:34.168Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, "status": "Ready", "tags": [ - "from-tarball-for-get-circuit" + "from-tarball-for-prove-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M11.439396S", - "compute_time_sec": 11.439396, + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.341145S", + "compute_time_sec": 7.341145, "compute_times": { - "total": 11.48178, - "clean_up": 0.04239, - "create_cpp": 0.14529, - "file_setup": 0.64122, - "compile_cpp": 5.26496, - "create_r1cs": 0.01945, - "save_results": 1.73118, - "get_r1cs_info": 0.00063, - "groth16_setup": 1.18458, - "export_verification_key": 1.25427, - "download_trusted_setup_file": 0.00275, - "solidity_contract_generation": 1.19505 + "total": 7.36447, + "clean_up": 0.02332, + "create_cpp": 0.09105, + "file_setup": 0.47332, + "compile_cpp": 3.1927, + "create_r1cs": 0.00718, + "save_results": 0.61003, + "get_r1cs_info": 0.00024, + "groth16_setup": 0.9424, + "export_verification_key": 1.02782, + "download_trusted_setup_file": 0.00084, + "solidity_contract_generation": 0.99558 }, "file_size": 236732, - "queue_time": "P0DT00H00M00.309653S", - "queue_time_sec": 0.309653, + "queue_time": "P0DT00H00M10.511893S", + "queue_time_sec": 10.511893, "uploaded_file_name": "circom-multiplier2.tgz", "has_smart_contract_verifier": true, "has_verification_key": true, - "verification_key": { - "protocol": "groth16", - "curve": "bn128", - "nPublic": 1, - "vk_alpha_1": [ - "20491192805390485299153009773594534940189261866228447918068658471970481763042", - "9383485363053290200918347156157836566562967994039712273449902621266178545958", - "1" - ], - "vk_beta_2": [ - [ - "6375614351688725206403948262868962793625744043794305715222011528459656738731", - "4252822878758300859123897981450591353533073413197771768651442665752259397132" - ], - [ - "10505242626370262277552901082094356697409835680220590971873171140371331206856", - "21847035105528745403288232691147584728191162732299865338377159692350059136679" - ], - [ - "1", - "0" - ] - ], - "vk_gamma_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_delta_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_alphabeta_12": [ - [ - [ - "2029413683389138792403550203267699914886160938906632433982220835551125967885", - "21072700047562757817161031222997517981543347628379360635925549008442030252106" - ], - [ - "5940354580057074848093997050200682056184807770593307860589430076672439820312", - "12156638873931618554171829126792193045421052652279363021382169897324752428276" - ], - [ - "7898200236362823042373859371574133993780991612861777490112507062703164551277", - "7074218545237549455313236346927434013100842096812539264420499035217050630853" - ] - ], - [ - [ - "7077479683546002997211712695946002074877511277312570035766170199895071832130", - "10093483419865920389913245021038182291233451549023025229112148274109565435465" - ], - [ - "4595479056700221319381530156280926371456704509942304414423590385166031118820", - "19831328484489333784475432780421641293929726139240675179672856274388269393268" - ], - [ - "11934129596455521040620786944827826205713621633706285934057045369193958244500", - "8037395052364110730298837004334506829870972346962140206007064471173334027475" - ] - ] - ], - "IC": [ - [ - "6819801395408938350212900248749732364821477541620635511814266536599629892365", - "9092252330033992554755034971584864587974280972948086568597554018278609861372", - "1" - ], - [ - "17882351432929302592725330552407222299541667716607588771282887857165175611387", - "18907419617206324833977586007131055763810739835484972981819026406579664278293", - "1" - ] - ] - }, + "verification_key": null, "warnings": null, "error": null, "curve": "bn254", @@ -6599,17 +21776,51 @@ }, "rawHeaders": [ "Content-Length", - "3930", + "1280", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:54 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:01 GMT", + "Wed, 21 Aug 2024 23:45:54 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6624,53 +21835,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/f3d8cb4d-096d-4da7-88e9-89c7f638be13/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/1c459443-df9d-46b1-a0e1-50b5d0cbc5ab/status", "body": "", "status": 200, "response": { - "proof_id": "f3d8cb4d-096d-4da7-88e9-89c7f638be13", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "991c35b0-5da2-4baf-ae42-be2480d98458", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:59.886Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "1c459443-df9d-46b1-a0e1-50b5d0cbc5ab", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "994", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:01 GMT", + "Wed, 21 Aug 2024 23:45:54 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6685,53 +21869,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/8db7ee1a-b9f4-4f0a-8110-da8a90f14a68/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/fc173dcc-3696-4d86-adab-594d77bdbfdd/status", "body": "", "status": 200, "response": { - "proof_id": "8db7ee1a-b9f4-4f0a-8110-da8a90f14a68", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "42244641-5311-4335-ba6f-45f8be17e8ad", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:01.323Z", - "meta": {}, - "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M00.322092S", - "queue_time_sec": 0.322092, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "1021", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:01 GMT", + "Wed, 21 Aug 2024 23:45:54 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6746,57 +21903,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/a2b5d905-5f79-4d0c-bc24-086e17b33f40/detail?include_verification_key=false", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/status", "body": "", "status": 200, "response": { - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.493Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.773657S", - "queue_time_sec": 0.773657, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "958", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:02 GMT", + "Wed, 21 Aug 2024 23:45:55 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6811,70 +21937,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/e17b8bc6-b716-4996-8040-2a2521ed79ab/detail?include_verification_key=false", + "path": "/api/v1/circuit/01574955-62ba-440d-9984-baa5ff70a924/status", "body": "", "status": 200, "response": { - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.560Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Ready", - "tags": [ - "from-tarball-for-all-circuit-proofs" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M12.729017S", - "compute_time_sec": 12.729017, - "compute_times": { - "total": 12.77851, - "clean_up": 0.0495, - "create_cpp": 0.20206, - "file_setup": 0.65236, - "compile_cpp": 5.51765, - "create_r1cs": 0.01396, - "save_results": 1.6868, - "get_r1cs_info": 0.00044, - "groth16_setup": 1.52873, - "export_verification_key": 1.55999, - "download_trusted_setup_file": 0.00135, - "solidity_contract_generation": 1.56567 - }, - "file_size": 236732, - "queue_time": "P0DT00H00M00.389084S", - "queue_time_sec": 0.389084, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": true, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "circuit_id": "01574955-62ba-440d-9984-baa5ff70a924", + "status": "Ready" }, "rawHeaders": [ "Content-Length", - "1295", + "73", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:02 GMT", + "Wed, 21 Aug 2024 23:45:56 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6889,57 +21971,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/dcc44a41-540f-4ebe-949d-ad7b26e58816/detail?include_verification_key=false", + "path": "/api/v1/circuit/1c459443-df9d-46b1-a0e1-50b5d0cbc5ab/status", "body": "", "status": 200, "response": { - "circuit_id": "dcc44a41-540f-4ebe-949d-ad7b26e58816", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.848Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.878058S", - "queue_time_sec": 0.878058, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "1c459443-df9d-46b1-a0e1-50b5d0cbc5ab", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "944", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:02 GMT", + "Wed, 21 Aug 2024 23:45:56 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -6954,57 +22005,60 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8585a51c-3f3b-4a16-8cc8-05a0eb22abb3/detail?include_verification_key=false", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", "body": "", "status": 200, "response": { - "circuit_id": "8585a51c-3f3b-4a16-8cc8-05a0eb22abb3", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.491Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.491580S", - "queue_time_sec": 1.49158, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:56 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/fc173dcc-3696-4d86-adab-594d77bdbfdd/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "949", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:02 GMT", + "Wed, 21 Aug 2024 23:45:56 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7019,57 +22073,70 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/b72ea400-2d09-49b4-a404-2c22d5c130a1/detail?include_verification_key=false", + "path": "/api/v1/circuit/01574955-62ba-440d-9984-baa5ff70a924/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "b72ea400-2d09-49b4-a404-2c22d5c130a1", + "circuit_id": "01574955-62ba-440d-9984-baa5ff70a924", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.745Z", + "date_created": "2024-08-21T23:45:34.475Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Ready", "tags": [ - "from-directory" + "sdk-create-proof-multiplier2-circuit" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.929848S", - "queue_time_sec": 0.929848, + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.989026S", + "compute_time_sec": 6.989026, + "compute_times": { + "total": 7.0279, + "clean_up": 0.03887, + "create_cpp": 0.17312, + "file_setup": 0.44214, + "compile_cpp": 3.25496, + "create_r1cs": 0.00906, + "save_results": 0.67799, + "get_r1cs_info": 0.00041, + "groth16_setup": 0.80628, + "export_verification_key": 0.79268, + "download_trusted_setup_file": 0.00109, + "solidity_contract_generation": 0.83129 + }, + "file_size": 236759, + "queue_time": "P0DT00H00M09.863435S", + "queue_time_sec": 9.863435, "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, + "has_smart_contract_verifier": true, + "has_verification_key": true, "verification_key": null, "warnings": null, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "949", + "1289", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:02 GMT", + "Wed, 21 Aug 2024 23:45:56 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7083,54 +22150,27 @@ }, { "scope": "https://sindri.app:443", - "method": "POST", - "path": "/api/v1/circuit/e17b8bc6-b716-4996-8040-2a2521ed79ab/prove", - "body": "------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"meta\"\r\n\r\n{}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d--\r\n\r\n", - "status": 201, + "method": "GET", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/status", + "body": "", + "status": 200, "response": { - "proof_id": "d272b279-6e6d-4bb6-8bbb-dde52d6f7adb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:02.797Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "994", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:02 GMT", + "Wed, 21 Aug 2024 23:45:57 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7144,34 +22184,34 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/f3d8cb4d-096d-4da7-88e9-89c7f638be13/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/451ef924-1cb3-4a5f-b5ef-48a295880052/prove", + "body": "------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"meta\"\r\n\r\n{}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d--\r\n\r\n", + "status": 201, "response": { - "proof_id": "f3d8cb4d-096d-4da7-88e9-89c7f638be13", + "proof_id": "e050ed14-58f0-45ad-9d29-8414651c9896", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "991c35b0-5da2-4baf-ae42-be2480d98458", + "circuit_id": "451ef924-1cb3-4a5f-b5ef-48a295880052", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:59.886Z", + "date_created": "2024-08-21T23:45:56.441Z", "meta": {}, "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", + "status": "Queued", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, "file_size": null, "proof": null, "public": null, - "queue_time": "P0DT00H00M01.950961S", - "queue_time_sec": 1.950961, + "queue_time": null, + "queue_time_sec": null, "smart_contract_calldata": null, "has_smart_contract_calldata": false, "has_verification_key": true, @@ -7181,17 +22221,17 @@ }, "rawHeaders": [ "Content-Length", - "1021", + "976", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:02 GMT", + "Wed, 21 Aug 2024 23:45:57 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7205,54 +22245,27 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/8db7ee1a-b9f4-4f0a-8110-da8a90f14a68/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", - "body": "", - "status": 200, - "response": { - "proof_id": "8db7ee1a-b9f4-4f0a-8110-da8a90f14a68", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "42244641-5311-4335-ba6f-45f8be17e8ad", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:01.323Z", - "meta": {}, - "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M00.322092S", - "queue_time_sec": 0.322092, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "method": "GET", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "1021", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:03 GMT", + "Wed, 21 Aug 2024 23:45:57 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7267,57 +22280,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/a2b5d905-5f79-4d0c-bc24-086e17b33f40/detail?include_verification_key=false", + "path": "/api/v1/proof/e050ed14-58f0-45ad-9d29-8414651c9896/status", "body": "", "status": 200, "response": { - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.493Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.773657S", - "queue_time_sec": 0.773657, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "proof_id": "e050ed14-58f0-45ad-9d29-8414651c9896", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "958", + "77", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:03 GMT", + "Wed, 21 Aug 2024 23:45:58 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7332,53 +22314,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/d272b279-6e6d-4bb6-8bbb-dde52d6f7adb/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/status", "body": "", "status": 200, "response": { - "proof_id": "d272b279-6e6d-4bb6-8bbb-dde52d6f7adb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:02.797Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "994", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:03 GMT", + "Wed, 21 Aug 2024 23:45:58 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7393,57 +22348,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/dcc44a41-540f-4ebe-949d-ad7b26e58816/detail?include_verification_key=false", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", "body": "", "status": 200, "response": { - "circuit_id": "dcc44a41-540f-4ebe-949d-ad7b26e58816", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.848Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.878058S", - "queue_time_sec": 0.878058, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "944", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:03 GMT", + "Wed, 21 Aug 2024 23:45:59 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7458,57 +22382,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8585a51c-3f3b-4a16-8cc8-05a0eb22abb3/detail?include_verification_key=false", + "path": "/api/v1/circuit/1c459443-df9d-46b1-a0e1-50b5d0cbc5ab/status", "body": "", "status": 200, "response": { - "circuit_id": "8585a51c-3f3b-4a16-8cc8-05a0eb22abb3", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.491Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.491580S", - "queue_time_sec": 1.49158, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "1c459443-df9d-46b1-a0e1-50b5d0cbc5ab", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "949", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:03 GMT", + "Wed, 21 Aug 2024 23:45:59 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7523,57 +22416,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/b72ea400-2d09-49b4-a404-2c22d5c130a1/detail?include_verification_key=false", + "path": "/api/v1/circuit/fc173dcc-3696-4d86-adab-594d77bdbfdd/status", "body": "", "status": 200, "response": { - "circuit_id": "b72ea400-2d09-49b4-a404-2c22d5c130a1", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.745Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-directory" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.929848S", - "queue_time_sec": 0.929848, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "949", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:04 GMT", + "Wed, 21 Aug 2024 23:45:59 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7587,183 +22449,190 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/8db7ee1a-b9f4-4f0a-8110-da8a90f14a68/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/circom-multiplier2:sdk-create-proof-multiplier2-circuit/prove", + "body": "------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"meta\"\r\n\r\n{}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d--\r\n\r\n", + "status": 201, "response": { - "proof_id": "8db7ee1a-b9f4-4f0a-8110-da8a90f14a68", + "proof_id": "edae22b1-46e0-4e70-a97b-42d163e4e9bd", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "42244641-5311-4335-ba6f-45f8be17e8ad", + "circuit_id": "01574955-62ba-440d-9984-baa5ff70a924", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:01.323Z", + "date_created": "2024-08-21T23:45:58.944Z", "meta": {}, "perform_verify": false, - "status": "Ready", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M02.515965S", - "compute_time_sec": 2.515965, - "compute_times": { - "prove": 0.35604, - "total": 2.542, - "clean_up": 0.02604, - "file_setup": 0.60084, - "save_results": 1.41826, - "export_calldata": 0.12878, - "generate_witness_c": 0.01204 - }, - "file_size": 1351, - "proof": { - "pi_a": [ - "16138215578700326535538946169349825322563021087823830782119063755231834785436", - "3632875620716022095815272974406964142894339549675034011571950843263622057002", - "1" - ], - "pi_b": [ - [ - "21817101796093045617939222122371169189306780175615972738932459534415232325328", - "10786471588888283610821581193626061887057601713576605026773555390603528932732" - ], - [ - "18838110789343672310913354772356937377854872628064588944877556219562288903186", - "14872120514730581463747963433988994250656507171756457297547345490172453200404" - ], - [ - "1", - "0" - ] - ], - "pi_c": [ - "7537637423465679195811531756863423713897301546334594623940308796962464244685", - "3637192034328117517608881357721966563319038652876221391543763520182555617548", - "1" - ], - "protocol": "groth16" - }, - "public": [ - "20" - ], - "queue_time": "P0DT00H00M00.322092S", - "queue_time_sec": 0.322092, - "smart_contract_calldata": null, - "has_smart_contract_calldata": true, - "has_verification_key": true, - "verification_key": { - "protocol": "groth16", - "curve": "bn128", - "nPublic": 1, - "vk_alpha_1": [ - "20491192805390485299153009773594534940189261866228447918068658471970481763042", - "9383485363053290200918347156157836566562967994039712273449902621266178545958", - "1" - ], - "vk_beta_2": [ - [ - "6375614351688725206403948262868962793625744043794305715222011528459656738731", - "4252822878758300859123897981450591353533073413197771768651442665752259397132" - ], - [ - "10505242626370262277552901082094356697409835680220590971873171140371331206856", - "21847035105528745403288232691147584728191162732299865338377159692350059136679" - ], - [ - "1", - "0" - ] - ], - "vk_gamma_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_delta_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_alphabeta_12": [ - [ - [ - "2029413683389138792403550203267699914886160938906632433982220835551125967885", - "21072700047562757817161031222997517981543347628379360635925549008442030252106" - ], - [ - "5940354580057074848093997050200682056184807770593307860589430076672439820312", - "12156638873931618554171829126792193045421052652279363021382169897324752428276" - ], - [ - "7898200236362823042373859371574133993780991612861777490112507062703164551277", - "7074218545237549455313236346927434013100842096812539264420499035217050630853" - ] - ], - [ - [ - "7077479683546002997211712695946002074877511277312570035766170199895071832130", - "10093483419865920389913245021038182291233451549023025229112148274109565435465" - ], - [ - "4595479056700221319381530156280926371456704509942304414423590385166031118820", - "19831328484489333784475432780421641293929726139240675179672856274388269393268" - ], - [ - "11934129596455521040620786944827826205713621633706285934057045369193958244500", - "8037395052364110730298837004334506829870972346962140206007064471173334027475" - ] - ] - ], - "IC": [ - [ - "6819801395408938350212900248749732364821477541620635511814266536599629892365", - "9092252330033992554755034971584864587974280972948086568597554018278609861372", - "1" - ], - [ - "17882351432929302592725330552407222299541667716607588771282887857165175611387", - "18907419617206324833977586007131055763810739835484972981819026406579664278293", - "1" - ] - ] - }, + "status": "Queued", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", + "compute_time": null, + "compute_time_sec": null, + "compute_times": null, + "file_size": null, + "proof": null, + "public": null, + "queue_time": null, + "queue_time_sec": null, + "smart_contract_calldata": null, + "has_smart_contract_calldata": false, + "has_verification_key": true, + "verification_key": null, "warnings": null, "error": null }, "rawHeaders": [ "Content-Length", - "4556", + "976", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:45:59 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/e050ed14-58f0-45ad-9d29-8414651c9896/status", + "body": "", + "status": 200, + "response": { + "proof_id": "e050ed14-58f0-45ad-9d29-8414651c9896", + "status": "Ready" + }, + "rawHeaders": [ + "Content-Length", + "71", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:46:00 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/edae22b1-46e0-4e70-a97b-42d163e4e9bd/status", + "body": "", + "status": 200, + "response": { + "proof_id": "edae22b1-46e0-4e70-a97b-42d163e4e9bd", + "status": "In Progress" + }, + "rawHeaders": [ + "Content-Length", + "77", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:46:00 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:46:00 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "Queued" + }, + "rawHeaders": [ + "Content-Length", + "74", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:04 GMT", + "Wed, 21 Aug 2024 23:46:01 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -7778,51 +22647,51 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/f3d8cb4d-096d-4da7-88e9-89c7f638be13/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/proof/e050ed14-58f0-45ad-9d29-8414651c9896/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "f3d8cb4d-096d-4da7-88e9-89c7f638be13", + "proof_id": "e050ed14-58f0-45ad-9d29-8414651c9896", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "991c35b0-5da2-4baf-ae42-be2480d98458", + "circuit_id": "451ef924-1cb3-4a5f-b5ef-48a295880052", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:59.886Z", + "date_created": "2024-08-21T23:45:56.441Z", "meta": {}, "perform_verify": false, "status": "Ready", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M01.826469S", - "compute_time_sec": 1.826469, + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.579775S", + "compute_time_sec": 1.579775, "compute_times": { - "prove": 0.50915, - "total": 1.83126, - "clean_up": 0.00479, - "file_setup": 0.27004, - "save_results": 0.90591, - "export_calldata": 0.13319, - "generate_witness_c": 0.00817 - }, - "file_size": 1349, + "prove": 0.31994, + "total": 1.58606, + "clean_up": 0.00628, + "file_setup": 0.4754, + "save_results": 0.64252, + "export_calldata": 0.12882, + "generate_witness_c": 0.0131 + }, + "file_size": 1351, "proof": { "pi_a": [ - "4545106339563557370824567133093197291067346032643842832108759902457466094205", - "4193553147824298910228840683460561710288889924628195196184747641045514966266", + "16895619687085991269717049030651752274030296525148496165656283011495554458051", + "21284288024783424987549477985611807944300313529536966495855610907999551872630", "1" ], "pi_b": [ [ - "13130318301790501539036426073021311954216187401459342587906428129910938210868", - "21644670039415057098498329479734497526916255333797136571294847054550156066287" + "20667607869599260702595358621662250784790231925327342159141204833245150458392", + "4788291850604302277670493579443193032702981763408020148971904839278016754968" ], [ - "11696842130354756481860162240921544877017279398728726814962039885979499969983", - "5197473477759126837780217556919874754387612142053748377194652034295243885210" + "1539365201092312923914069163483465517910614958717660814438827802889366226814", + "6854237321984625407557433623081140209867361387827378118343885279590095151175" ], [ "1", @@ -7830,8 +22699,8 @@ ] ], "pi_c": [ - "8135264409694024787290348667401635029518852287530580172858444733120575852730", - "5541428705156240021395085942072224241629102679216951327183322291155376287532", + "10089506415444810738182518134425328959983843687127330019883294236560541123480", + "21841470419198402043386117174242168650907988111522712599837913522125325884063", "1" ], "protocol": "groth16" @@ -7839,8 +22708,8 @@ "public": [ "20" ], - "queue_time": "P0DT00H00M01.950961S", - "queue_time_sec": 1.950961, + "queue_time": "P0DT00H00M01.523393S", + "queue_time_sec": 1.523393, "smart_contract_calldata": null, "has_smart_contract_calldata": true, "has_verification_key": true, @@ -7943,143 +22812,17 @@ }, "rawHeaders": [ "Content-Length", - "4556", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:04:04 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/a2b5d905-5f79-4d0c-bc24-086e17b33f40/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.493Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.773657S", - "queue_time_sec": 0.773657, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null - }, - "rawHeaders": [ - "Content-Length", - "958", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:04:04 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/d272b279-6e6d-4bb6-8bbb-dde52d6f7adb/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", - "body": "", - "status": 200, - "response": { - "proof_id": "d272b279-6e6d-4bb6-8bbb-dde52d6f7adb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:02.797Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null - }, - "rawHeaders": [ - "Content-Length", - "994", + "4538", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:04 GMT", + "Wed, 21 Aug 2024 23:46:01 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -8091,60 +22834,29 @@ ], "responseIsBinary": false }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/dcc44a41-540f-4ebe-949d-ad7b26e58816/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "dcc44a41-540f-4ebe-949d-ad7b26e58816", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.848Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.878058S", - "queue_time_sec": 0.878058, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/1c459443-df9d-46b1-a0e1-50b5d0cbc5ab/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "1c459443-df9d-46b1-a0e1-50b5d0cbc5ab", + "status": "Ready" }, "rawHeaders": [ "Content-Length", - "944", + "73", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:05 GMT", + "Wed, 21 Aug 2024 23:46:01 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -8159,57 +22871,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8585a51c-3f3b-4a16-8cc8-05a0eb22abb3/detail?include_verification_key=false", + "path": "/api/v1/circuit/fc173dcc-3696-4d86-adab-594d77bdbfdd/status", "body": "", "status": 200, "response": { - "circuit_id": "8585a51c-3f3b-4a16-8cc8-05a0eb22abb3", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.491Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.491580S", - "queue_time_sec": 1.49158, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", + "status": "Ready" }, "rawHeaders": [ "Content-Length", - "949", + "73", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:05 GMT", + "Wed, 21 Aug 2024 23:46:01 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -8224,57 +22905,70 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/b72ea400-2d09-49b4-a404-2c22d5c130a1/detail?include_verification_key=false", + "path": "/api/v1/circuit/1c459443-df9d-46b1-a0e1-50b5d0cbc5ab/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "b72ea400-2d09-49b4-a404-2c22d5c130a1", + "circuit_id": "1c459443-df9d-46b1-a0e1-50b5d0cbc5ab", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.745Z", + "date_created": "2024-08-21T23:45:34.465Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Ready", "tags": [ - "from-directory" + "from-file-array" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.929848S", - "queue_time_sec": 0.929848, + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M06.926548S", + "compute_time_sec": 6.926548, + "compute_times": { + "total": 6.94564, + "clean_up": 0.01909, + "create_cpp": 0.14643, + "file_setup": 0.4258, + "compile_cpp": 3.24434, + "create_r1cs": 0.00825, + "save_results": 0.66532, + "get_r1cs_info": 0.00024, + "groth16_setup": 0.81072, + "export_verification_key": 0.80961, + "download_trusted_setup_file": 0.00096, + "solidity_contract_generation": 0.81488 + }, + "file_size": 236740, + "queue_time": "P0DT00H00M18.845562S", + "queue_time_sec": 18.845562, "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, + "has_smart_contract_verifier": true, + "has_verification_key": true, "verification_key": null, "warnings": null, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "949", + "1269", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:05 GMT", + "Wed, 21 Aug 2024 23:46:02 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -8289,57 +22983,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/a2b5d905-5f79-4d0c-bc24-086e17b33f40/detail?include_verification_key=false", + "path": "/api/v1/proof/edae22b1-46e0-4e70-a97b-42d163e4e9bd/status", "body": "", "status": 200, "response": { - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.493Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.773657S", - "queue_time_sec": 0.773657, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "proof_id": "edae22b1-46e0-4e70-a97b-42d163e4e9bd", + "status": "Ready" }, "rawHeaders": [ "Content-Length", - "958", + "71", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:05 GMT", + "Wed, 21 Aug 2024 23:46:02 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -8354,53 +23017,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/d272b279-6e6d-4bb6-8bbb-dde52d6f7adb/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/status", "body": "", "status": 200, "response": { - "proof_id": "d272b279-6e6d-4bb6-8bbb-dde52d6f7adb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:02.797Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "994", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:06 GMT", + "Wed, 21 Aug 2024 23:46:02 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -8415,57 +23051,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/dcc44a41-540f-4ebe-949d-ad7b26e58816/detail?include_verification_key=false", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", "body": "", "status": 200, "response": { - "circuit_id": "dcc44a41-540f-4ebe-949d-ad7b26e58816", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.848Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-tarball" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 529, - "queue_time": "P0DT00H00M00.878058S", - "queue_time_sec": 0.878058, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "944", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:06 GMT", + "Wed, 21 Aug 2024 23:46:02 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -8480,57 +23085,182 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8585a51c-3f3b-4a16-8cc8-05a0eb22abb3/detail?include_verification_key=false", + "path": "/api/v1/proof/edae22b1-46e0-4e70-a97b-42d163e4e9bd/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "circuit_id": "8585a51c-3f3b-4a16-8cc8-05a0eb22abb3", + "proof_id": "edae22b1-46e0-4e70-a97b-42d163e4e9bd", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", + "circuit_id": "01574955-62ba-440d-9984-baa5ff70a924", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.491Z", + "date_created": "2024-08-21T23:45:58.944Z", "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-file-array" + "perform_verify": false, + "status": "Ready", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.658913S", + "compute_time_sec": 1.658913, + "compute_times": { + "prove": 0.22602, + "total": 1.67337, + "clean_up": 0.01446, + "file_setup": 0.49639, + "save_results": 0.81099, + "export_calldata": 0.11531, + "generate_witness_c": 0.0102 + }, + "file_size": 1353, + "proof": { + "pi_a": [ + "15750007508778107760000421582217315977441261419755361683880270412819334857075", + "17197921856253596850819426841786774384041168527484422944265830520762010955014", + "1" + ], + "pi_b": [ + [ + "2760986722720569918102843537634656661200471131728341860252010137836440115578", + "16937016179400368998512625302947285026357388719561606366051912803902295938294" + ], + [ + "15276529299692396160198240895103875622124285882059465118616616509035375559585", + "18140035231199134341079499423026791683277109661564441414412876144944244549015" + ], + [ + "1", + "0" + ] + ], + "pi_c": [ + "20746502945356210166931234080546031295321091875965924989632635308632336491797", + "21726998579010837201443086295760075387154445995883534035452916697745779264848", + "1" + ], + "protocol": "groth16" + }, + "public": [ + "20" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.491580S", - "queue_time_sec": 1.49158, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, + "queue_time": "P0DT00H00M01.319290S", + "queue_time_sec": 1.31929, + "smart_contract_calldata": null, + "has_smart_contract_calldata": true, + "has_verification_key": true, + "verification_key": { + "protocol": "groth16", + "curve": "bn128", + "nPublic": 1, + "vk_alpha_1": [ + "20491192805390485299153009773594534940189261866228447918068658471970481763042", + "9383485363053290200918347156157836566562967994039712273449902621266178545958", + "1" + ], + "vk_beta_2": [ + [ + "6375614351688725206403948262868962793625744043794305715222011528459656738731", + "4252822878758300859123897981450591353533073413197771768651442665752259397132" + ], + [ + "10505242626370262277552901082094356697409835680220590971873171140371331206856", + "21847035105528745403288232691147584728191162732299865338377159692350059136679" + ], + [ + "1", + "0" + ] + ], + "vk_gamma_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_delta_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_alphabeta_12": [ + [ + [ + "2029413683389138792403550203267699914886160938906632433982220835551125967885", + "21072700047562757817161031222997517981543347628379360635925549008442030252106" + ], + [ + "5940354580057074848093997050200682056184807770593307860589430076672439820312", + "12156638873931618554171829126792193045421052652279363021382169897324752428276" + ], + [ + "7898200236362823042373859371574133993780991612861777490112507062703164551277", + "7074218545237549455313236346927434013100842096812539264420499035217050630853" + ] + ], + [ + [ + "7077479683546002997211712695946002074877511277312570035766170199895071832130", + "10093483419865920389913245021038182291233451549023025229112148274109565435465" + ], + [ + "4595479056700221319381530156280926371456704509942304414423590385166031118820", + "19831328484489333784475432780421641293929726139240675179672856274388269393268" + ], + [ + "11934129596455521040620786944827826205713621633706285934057045369193958244500", + "8037395052364110730298837004334506829870972346962140206007064471173334027475" + ] + ] + ], + "IC": [ + [ + "6819801395408938350212900248749732364821477541620635511814266536599629892365", + "9092252330033992554755034971584864587974280972948086568597554018278609861372", + "1" + ], + [ + "17882351432929302592725330552407222299541667716607588771282887857165175611387", + "18907419617206324833977586007131055763810739835484972981819026406579664278293", + "1" + ] + ] + }, "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "error": null }, "rawHeaders": [ "Content-Length", - "949", + "4540", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:06 GMT", + "Wed, 21 Aug 2024 23:46:02 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -8545,57 +23275,70 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/b72ea400-2d09-49b4-a404-2c22d5c130a1/detail?include_verification_key=false", + "path": "/api/v1/circuit/fc173dcc-3696-4d86-adab-594d77bdbfdd/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "circuit_id": "b72ea400-2d09-49b4-a404-2c22d5c130a1", + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.745Z", + "date_created": "2024-08-21T23:45:34.523Z", "meta": {}, "num_proofs": 0, "proving_scheme": "groth16", "public": false, - "status": "In Progress", + "status": "Ready", "tags": [ - "from-directory" + "from-tarball-for-all-circuit-proofs" ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 555, - "queue_time": "P0DT00H00M00.929848S", - "queue_time_sec": 0.929848, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.407074S", + "compute_time_sec": 7.407074, + "compute_times": { + "total": 7.44882, + "clean_up": 0.04174, + "create_cpp": 0.0861, + "file_setup": 0.4663, + "compile_cpp": 3.18287, + "create_r1cs": 0.00681, + "save_results": 0.73232, + "get_r1cs_info": 0.00021, + "groth16_setup": 0.97786, + "export_verification_key": 0.98064, + "download_trusted_setup_file": 0.00074, + "solidity_contract_generation": 0.97322 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M18.657648S", + "queue_time_sec": 18.657648, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, + "has_verification_key": true, "verification_key": null, "warnings": null, "error": null, "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "949", + "1285", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:06 GMT", + "Wed, 21 Aug 2024 23:46:03 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -8610,70 +23353,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/a2b5d905-5f79-4d0c-bc24-086e17b33f40/detail?include_verification_key=false", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/status", "body": "", "status": 200, "response": { - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.493Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Ready", - "tags": [ - "from-tarball-for-get-proof" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M17.470908S", - "compute_time_sec": 17.470908, - "compute_times": { - "total": 17.48355, - "clean_up": 0.01264, - "create_cpp": 0.44976, - "file_setup": 0.8977, - "compile_cpp": 7.82235, - "create_r1cs": 0.02469, - "save_results": 1.66184, - "get_r1cs_info": 0.00072, - "groth16_setup": 2.21538, - "export_verification_key": 2.05614, - "download_trusted_setup_file": 0.00274, - "solidity_contract_generation": 2.33959 - }, - "file_size": 236732, - "queue_time": "P0DT00H00M00.773657S", - "queue_time_sec": 0.773657, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": true, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "1287", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:07 GMT", + "Wed, 21 Aug 2024 23:46:04 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -8688,53 +23387,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/d272b279-6e6d-4bb6-8bbb-dde52d6f7adb/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", "body": "", "status": 200, "response": { - "proof_id": "d272b279-6e6d-4bb6-8bbb-dde52d6f7adb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:02.797Z", - "meta": {}, - "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M04.376563S", - "queue_time_sec": 4.376563, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "1021", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:07 GMT", + "Wed, 21 Aug 2024 23:46:04 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -8749,25 +23421,25 @@ { "scope": "https://sindri.app:443", "method": "POST", - "path": "/api/v1/circuit/a2b5d905-5f79-4d0c-bc24-086e17b33f40/prove", + "path": "/api/v1/circuit/fc173dcc-3696-4d86-adab-594d77bdbfdd/prove", "body": "------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"meta\"\r\n\r\n{}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d--\r\n\r\n", "status": 201, "response": { - "proof_id": "9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1", + "proof_id": "134477c9-5184-4630-a2e0-f11b0ec64ed0", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:07.640Z", + "date_created": "2024-08-21T23:46:04.414Z", "meta": {}, "perform_verify": false, "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, @@ -8785,95 +23457,17 @@ }, "rawHeaders": [ "Content-Length", - "994", - "Content-Type", - "application/json; charset=utf-8", - "Cross-Origin-Opener-Policy", - "same-origin", - "Date", - "Mon, 19 Aug 2024 23:04:07 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/dcc44a41-540f-4ebe-949d-ad7b26e58816/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "dcc44a41-540f-4ebe-949d-ad7b26e58816", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.848Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Ready", - "tags": [ - "from-tarball" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M17.873697S", - "compute_time_sec": 17.873697, - "compute_times": { - "total": 17.88823, - "clean_up": 0.01453, - "create_cpp": 0.45571, - "file_setup": 0.87966, - "compile_cpp": 7.97108, - "create_r1cs": 0.02209, - "save_results": 1.88774, - "get_r1cs_info": 0.00076, - "groth16_setup": 2.27445, - "export_verification_key": 2.31738, - "download_trusted_setup_file": 0.00278, - "solidity_contract_generation": 2.06203 - }, - "file_size": 236732, - "queue_time": "P0DT00H00M00.878058S", - "queue_time_sec": 0.878058, - "uploaded_file_name": "circom-multiplier2.tgz", - "has_smart_contract_verifier": true, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 - }, - "rawHeaders": [ - "Content-Length", - "1274", + "976", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:07 GMT", + "Wed, 21 Aug 2024 23:46:05 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -8888,57 +23482,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/8585a51c-3f3b-4a16-8cc8-05a0eb22abb3/detail?include_verification_key=false", + "path": "/api/v1/proof/134477c9-5184-4630-a2e0-f11b0ec64ed0/status", "body": "", "status": 200, "response": { - "circuit_id": "8585a51c-3f3b-4a16-8cc8-05a0eb22abb3", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.491Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "In Progress", - "tags": [ - "from-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": 537, - "queue_time": "P0DT00H00M01.491580S", - "queue_time_sec": 1.49158, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": false, - "has_verification_key": false, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": null, - "num_outputs": null, - "num_private_inputs": null, - "num_public_inputs": null + "proof_id": "134477c9-5184-4630-a2e0-f11b0ec64ed0", + "status": "Queued" }, "rawHeaders": [ "Content-Length", - "949", + "72", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:07 GMT", + "Wed, 21 Aug 2024 23:46:05 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -8953,53 +23516,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/status", "body": "", "status": 200, "response": { - "proof_id": "9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:07.640Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "994", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:08 GMT", + "Wed, 21 Aug 2024 23:46:05 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -9014,70 +23550,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/b72ea400-2d09-49b4-a404-2c22d5c130a1/detail?include_verification_key=false", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", "body": "", "status": 200, "response": { - "circuit_id": "b72ea400-2d09-49b4-a404-2c22d5c130a1", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.745Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Ready", - "tags": [ - "from-directory" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M18.385149S", - "compute_time_sec": 18.385149, - "compute_times": { - "total": 18.39835, - "clean_up": 0.0132, - "create_cpp": 0.4567, - "file_setup": 0.85558, - "compile_cpp": 7.90895, - "create_r1cs": 0.02559, - "save_results": 1.85387, - "get_r1cs_info": 0.00072, - "groth16_setup": 2.40346, - "export_verification_key": 2.49003, - "download_trusted_setup_file": 0.00274, - "solidity_contract_generation": 2.3875 - }, - "file_size": 236758, - "queue_time": "P0DT00H00M00.929848S", - "queue_time_sec": 0.929848, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": true, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "1276", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:08 GMT", + "Wed, 21 Aug 2024 23:46:05 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -9092,131 +23584,60 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/d272b279-6e6d-4bb6-8bbb-dde52d6f7adb/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/status", "body": "", "status": 200, "response": { - "proof_id": "d272b279-6e6d-4bb6-8bbb-dde52d6f7adb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:02.797Z", - "meta": {}, - "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M04.376563S", - "queue_time_sec": 4.376563, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "1021", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:08 GMT", - "Referrer-Policy", - "same-origin", - "Server", - "gunicorn", - "Vary", - "Cookie, origin", - "X-Content-Type-Options", - "nosniff", - "X-Frame-Options", - "SAMEORIGIN", - "Connection", - "close" - ], - "responseIsBinary": false - }, - { - "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/circuit/8585a51c-3f3b-4a16-8cc8-05a0eb22abb3/detail?include_verification_key=false", - "body": "", - "status": 200, - "response": { - "circuit_id": "8585a51c-3f3b-4a16-8cc8-05a0eb22abb3", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_type": "circom", - "date_created": "2024-08-19T23:03:48.491Z", - "meta": {}, - "num_proofs": 0, - "proving_scheme": "groth16", - "public": false, - "status": "Ready", - "tags": [ - "from-file-array" - ], - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M18.478781S", - "compute_time_sec": 18.478781, - "compute_times": { - "total": 18.49134, - "clean_up": 0.01256, - "create_cpp": 0.44893, - "file_setup": 0.87124, - "compile_cpp": 7.55424, - "create_r1cs": 0.02461, - "save_results": 2.00597, - "get_r1cs_info": 0.00066, - "groth16_setup": 2.56287, - "export_verification_key": 2.46906, - "download_trusted_setup_file": 0.00282, - "solidity_contract_generation": 2.5384 - }, - "file_size": 236740, - "queue_time": "P0DT00H00M01.491580S", - "queue_time_sec": 1.49158, - "uploaded_file_name": "circom-multiplier2.tar.gz", - "has_smart_contract_verifier": true, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null, - "curve": "bn254", - "num_constraints": 1, - "num_outputs": 1, - "num_private_inputs": 2, - "num_public_inputs": 0 + "Wed, 21 Aug 2024 23:46:07 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/proof/134477c9-5184-4630-a2e0-f11b0ec64ed0/status", + "body": "", + "status": 200, + "response": { + "proof_id": "134477c9-5184-4630-a2e0-f11b0ec64ed0", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "1278", + "77", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:09 GMT", + "Wed, 21 Aug 2024 23:46:07 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -9231,53 +23652,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", "body": "", "status": 200, "response": { - "proof_id": "9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:07.640Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "994", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:09 GMT", + "Wed, 21 Aug 2024 23:46:07 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -9292,182 +23686,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/d272b279-6e6d-4bb6-8bbb-dde52d6f7adb/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/proof/134477c9-5184-4630-a2e0-f11b0ec64ed0/status", "body": "", "status": 200, "response": { - "proof_id": "d272b279-6e6d-4bb6-8bbb-dde52d6f7adb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:02.797Z", - "meta": {}, - "perform_verify": false, - "status": "Ready", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M01.783826S", - "compute_time_sec": 1.783826, - "compute_times": { - "prove": 0.4545, - "total": 1.78885, - "clean_up": 0.00502, - "file_setup": 0.28059, - "save_results": 0.91286, - "export_calldata": 0.12759, - "generate_witness_c": 0.00829 - }, - "file_size": 1351, - "proof": { - "pi_a": [ - "4774118257515634186145807379452781120723029499078666296513826053385517511173", - "16168802229294146740479928726677725837992599950996168964683587168498566959334", - "1" - ], - "pi_b": [ - [ - "16592628129764141770035853527946916674887606407149645938667450342411761010799", - "18359106539044755072416116444592917527261019254074947867270393777326130563586" - ], - [ - "8136477754769621137167752230856507099056482953077217593426655533681358052458", - "15114169187303117886691238871379582193170883041695137822613437480574042261089" - ], - [ - "1", - "0" - ] - ], - "pi_c": [ - "6880663425602635612509709550960014868233753191514887926741390113528167840699", - "21726150217297731652560380650879989613845740927148091185600055744587464283713", - "1" - ], - "protocol": "groth16" - }, - "public": [ - "20" - ], - "queue_time": "P0DT00H00M04.376563S", - "queue_time_sec": 4.376563, - "smart_contract_calldata": null, - "has_smart_contract_calldata": true, - "has_verification_key": true, - "verification_key": { - "protocol": "groth16", - "curve": "bn128", - "nPublic": 1, - "vk_alpha_1": [ - "20491192805390485299153009773594534940189261866228447918068658471970481763042", - "9383485363053290200918347156157836566562967994039712273449902621266178545958", - "1" - ], - "vk_beta_2": [ - [ - "6375614351688725206403948262868962793625744043794305715222011528459656738731", - "4252822878758300859123897981450591353533073413197771768651442665752259397132" - ], - [ - "10505242626370262277552901082094356697409835680220590971873171140371331206856", - "21847035105528745403288232691147584728191162732299865338377159692350059136679" - ], - [ - "1", - "0" - ] - ], - "vk_gamma_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_delta_2": [ - [ - "10857046999023057135944570762232829481370756359578518086990519993285655852781", - "11559732032986387107991004021392285783925812861821192530917403151452391805634" - ], - [ - "8495653923123431417604973247489272438418190587263600148770280649306958101930", - "4082367875863433681332203403145435568316851327593401208105741076214120093531" - ], - [ - "1", - "0" - ] - ], - "vk_alphabeta_12": [ - [ - [ - "2029413683389138792403550203267699914886160938906632433982220835551125967885", - "21072700047562757817161031222997517981543347628379360635925549008442030252106" - ], - [ - "5940354580057074848093997050200682056184807770593307860589430076672439820312", - "12156638873931618554171829126792193045421052652279363021382169897324752428276" - ], - [ - "7898200236362823042373859371574133993780991612861777490112507062703164551277", - "7074218545237549455313236346927434013100842096812539264420499035217050630853" - ] - ], - [ - [ - "7077479683546002997211712695946002074877511277312570035766170199895071832130", - "10093483419865920389913245021038182291233451549023025229112148274109565435465" - ], - [ - "4595479056700221319381530156280926371456704509942304414423590385166031118820", - "19831328484489333784475432780421641293929726139240675179672856274388269393268" - ], - [ - "11934129596455521040620786944827826205713621633706285934057045369193958244500", - "8037395052364110730298837004334506829870972346962140206007064471173334027475" - ] - ] - ], - "IC": [ - [ - "6819801395408938350212900248749732364821477541620635511814266536599629892365", - "9092252330033992554755034971584864587974280972948086568597554018278609861372", - "1" - ], - [ - "17882351432929302592725330552407222299541667716607588771282887857165175611387", - "18907419617206324833977586007131055763810739835484972981819026406579664278293", - "1" - ] - ] - }, - "warnings": null, - "error": null + "proof_id": "134477c9-5184-4630-a2e0-f11b0ec64ed0", + "status": "Ready" }, "rawHeaders": [ "Content-Length", - "4557", + "71", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:10 GMT", + "Wed, 21 Aug 2024 23:46:09 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -9482,63 +23720,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/circuit/e17b8bc6-b716-4996-8040-2a2521ed79ab/proofs", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/status", "body": "", "status": 200, - "response": [ - { - "proof_id": "d272b279-6e6d-4bb6-8bbb-dde52d6f7adb", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "e17b8bc6-b716-4996-8040-2a2521ed79ab", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:02.797Z", - "meta": {}, - "perform_verify": false, - "status": "Ready", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M01.783826S", - "compute_time_sec": 1.783826, - "compute_times": { - "prove": 0.4545, - "total": 1.78885, - "clean_up": 0.00502, - "file_setup": 0.28059, - "save_results": 0.91286, - "export_calldata": 0.12759, - "generate_witness_c": 0.00829 - }, - "file_size": 1351, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M04.376563S", - "queue_time_sec": 4.376563, - "smart_contract_calldata": null, - "has_smart_contract_calldata": true, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null - } - ], + "response": { + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", + "status": "In Progress" + }, "rawHeaders": [ "Content-Length", - "1197", + "79", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:10 GMT", + "Wed, 21 Aug 2024 23:46:09 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -9553,53 +23754,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/status", "body": "", "status": 200, "response": { - "proof_id": "9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:07.640Z", - "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", + "status": "Ready" }, "rawHeaders": [ "Content-Length", - "994", + "73", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:10 GMT", + "Wed, 21 Aug 2024 23:46:09 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -9614,53 +23788,104 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1", + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:07.640Z", + "date_created": "2024-08-21T23:45:34.912Z", "meta": {}, - "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-tarball-for-get-proof" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.022466S", + "compute_time_sec": 7.022466, + "compute_times": { + "total": 7.06914, + "clean_up": 0.04668, + "create_cpp": 0.14167, + "file_setup": 0.52418, + "compile_cpp": 3.29342, + "create_r1cs": 0.00913, + "save_results": 0.64882, + "get_r1cs_info": 0.00022, + "groth16_setup": 0.80895, + "export_verification_key": 0.80507, + "download_trusted_setup_file": 0.00084, + "solidity_contract_generation": 0.79016 + }, + "file_size": 236732, + "queue_time": "P0DT00H00M26.590940S", + "queue_time_sec": 26.59094, + "uploaded_file_name": "circom-multiplier2.tgz", + "has_smart_contract_verifier": true, "has_verification_key": true, "verification_key": null, "warnings": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 + }, + "rawHeaders": [ + "Content-Length", + "1277", + "Content-Type", + "application/json; charset=utf-8", + "Cross-Origin-Opener-Policy", + "same-origin", + "Date", + "Wed, 21 Aug 2024 23:46:10 GMT", + "Referrer-Policy", + "same-origin", + "Server", + "openresty", + "Vary", + "Cookie, origin", + "X-Content-Type-Options", + "nosniff", + "X-Frame-Options", + "SAMEORIGIN", + "Connection", + "close" + ], + "responseIsBinary": false + }, + { + "scope": "https://sindri.app:443", + "method": "GET", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/status", + "body": "", + "status": 200, + "response": { + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", + "status": "Ready" }, "rawHeaders": [ "Content-Length", - "994", + "73", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:12 GMT", + "Wed, 21 Aug 2024 23:46:11 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -9675,53 +23900,182 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/proof/134477c9-5184-4630-a2e0-f11b0ec64ed0/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1", + "proof_id": "134477c9-5184-4630-a2e0-f11b0ec64ed0", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:07.640Z", + "date_created": "2024-08-21T23:46:04.414Z", "meta": {}, "perform_verify": false, - "status": "Queued", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": null, - "queue_time_sec": null, + "status": "Ready", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.666996S", + "compute_time_sec": 1.666996, + "compute_times": { + "prove": 0.31861, + "total": 1.67584, + "clean_up": 0.00885, + "file_setup": 0.54654, + "save_results": 0.66189, + "export_calldata": 0.12745, + "generate_witness_c": 0.01251 + }, + "file_size": 1350, + "proof": { + "pi_a": [ + "5535225693496897146550316155045791146089595175214360152823784639974301588112", + "6456917420721378322928080359647272238516750013406840267040102799818539905019", + "1" + ], + "pi_b": [ + [ + "6009635029845140469933130391949825969100599248449909301491033003552442544920", + "15838871016048260154541047031173663097607386756470238695644731638719744855070" + ], + [ + "20808482124619014776620874411469326790194718898142471989748122677609248766562", + "21478897394735369659940118707901233974517218199835900527517004608643174218787" + ], + [ + "1", + "0" + ] + ], + "pi_c": [ + "16952629280196501549540017715612517206002462258620098735298622334271679416259", + "7368680444410992818610265172946250208716381563653272966263446683407534014730", + "1" + ], + "protocol": "groth16" + }, + "public": [ + "20" + ], + "queue_time": "P0DT00H00M01.314761S", + "queue_time_sec": 1.314761, "smart_contract_calldata": null, - "has_smart_contract_calldata": false, + "has_smart_contract_calldata": true, "has_verification_key": true, - "verification_key": null, + "verification_key": { + "protocol": "groth16", + "curve": "bn128", + "nPublic": 1, + "vk_alpha_1": [ + "20491192805390485299153009773594534940189261866228447918068658471970481763042", + "9383485363053290200918347156157836566562967994039712273449902621266178545958", + "1" + ], + "vk_beta_2": [ + [ + "6375614351688725206403948262868962793625744043794305715222011528459656738731", + "4252822878758300859123897981450591353533073413197771768651442665752259397132" + ], + [ + "10505242626370262277552901082094356697409835680220590971873171140371331206856", + "21847035105528745403288232691147584728191162732299865338377159692350059136679" + ], + [ + "1", + "0" + ] + ], + "vk_gamma_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_delta_2": [ + [ + "10857046999023057135944570762232829481370756359578518086990519993285655852781", + "11559732032986387107991004021392285783925812861821192530917403151452391805634" + ], + [ + "8495653923123431417604973247489272438418190587263600148770280649306958101930", + "4082367875863433681332203403145435568316851327593401208105741076214120093531" + ], + [ + "1", + "0" + ] + ], + "vk_alphabeta_12": [ + [ + [ + "2029413683389138792403550203267699914886160938906632433982220835551125967885", + "21072700047562757817161031222997517981543347628379360635925549008442030252106" + ], + [ + "5940354580057074848093997050200682056184807770593307860589430076672439820312", + "12156638873931618554171829126792193045421052652279363021382169897324752428276" + ], + [ + "7898200236362823042373859371574133993780991612861777490112507062703164551277", + "7074218545237549455313236346927434013100842096812539264420499035217050630853" + ] + ], + [ + [ + "7077479683546002997211712695946002074877511277312570035766170199895071832130", + "10093483419865920389913245021038182291233451549023025229112148274109565435465" + ], + [ + "4595479056700221319381530156280926371456704509942304414423590385166031118820", + "19831328484489333784475432780421641293929726139240675179672856274388269393268" + ], + [ + "11934129596455521040620786944827826205713621633706285934057045369193958244500", + "8037395052364110730298837004334506829870972346962140206007064471173334027475" + ] + ] + ], + "IC": [ + [ + "6819801395408938350212900248749732364821477541620635511814266536599629892365", + "9092252330033992554755034971584864587974280972948086568597554018278609861372", + "1" + ], + [ + "17882351432929302592725330552407222299541667716607588771282887857165175611387", + "18907419617206324833977586007131055763810739835484972981819026406579664278293", + "1" + ] + ] + }, "warnings": null, "error": null }, "rawHeaders": [ "Content-Length", - "994", + "4539", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:13 GMT", + "Wed, 21 Aug 2024 23:46:11 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -9735,34 +24089,34 @@ }, { "scope": "https://sindri.app:443", - "method": "GET", - "path": "/api/v1/proof/9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", - "body": "", - "status": 200, + "method": "POST", + "path": "/api/v1/circuit/9d9ba6cd-d91a-4f41-a712-ee670a9939cf/prove", + "body": "------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"meta\"\r\n\r\n{}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"perform_verify\"\r\n\r\nfalse\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d\r\nContent-Disposition: form-data; name=\"proof_input\"\r\n\r\n{\"a\":\"5\",\"b\":\"4\"}\r\n------WebKitFormBoundary0buQ8d6EhWcs9X9d--\r\n\r\n", + "status": 201, "response": { - "proof_id": "9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1", + "proof_id": "fc109408-df38-4e7a-9057-0f635bca0971", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:07.640Z", + "date_created": "2024-08-21T23:46:11.350Z", "meta": {}, "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", + "status": "Queued", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", "compute_time": null, "compute_time_sec": null, "compute_times": null, "file_size": null, "proof": null, "public": null, - "queue_time": "P0DT00H00M05.802748S", - "queue_time_sec": 5.802748, + "queue_time": null, + "queue_time_sec": null, "smart_contract_calldata": null, "has_smart_contract_calldata": false, "has_verification_key": true, @@ -9772,17 +24126,17 @@ }, "rawHeaders": [ "Content-Length", - "1021", + "976", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:14 GMT", + "Wed, 21 Aug 2024 23:46:12 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -9797,53 +24151,70 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/19cc3005-0afc-44ab-8027-0ac561c40487/detail?include_verification_key=false", "body": "", "status": 200, "response": { - "proof_id": "9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1", + "circuit_id": "19cc3005-0afc-44ab-8027-0ac561c40487", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:07.640Z", + "date_created": "2024-08-21T23:45:34.915Z", "meta": {}, - "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M05.802748S", - "queue_time_sec": 5.802748, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, + "num_proofs": 0, + "proving_scheme": "groth16", + "public": false, + "status": "Ready", + "tags": [ + "from-directory" + ], + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M07.376645S", + "compute_time_sec": 7.376645, + "compute_times": { + "total": 7.40443, + "clean_up": 0.02778, + "create_cpp": 0.11433, + "file_setup": 0.49054, + "compile_cpp": 3.19066, + "create_r1cs": 0.00691, + "save_results": 0.65811, + "get_r1cs_info": 0.00022, + "groth16_setup": 0.96485, + "export_verification_key": 0.9652, + "download_trusted_setup_file": 0.00074, + "solidity_contract_generation": 0.98508 + }, + "file_size": 236759, + "queue_time": "P0DT00H00M26.921223S", + "queue_time_sec": 26.921223, + "uploaded_file_name": "circom-multiplier2.tar.gz", + "has_smart_contract_verifier": true, "has_verification_key": true, "verification_key": null, "warnings": null, - "error": null + "error": null, + "curve": "bn254", + "num_constraints": 1, + "num_outputs": 1, + "num_private_inputs": 2, + "num_public_inputs": 0 }, "rawHeaders": [ "Content-Length", - "1021", + "1268", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:16 GMT", + "Wed, 21 Aug 2024 23:46:12 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -9858,53 +24229,63 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/circuit/fc173dcc-3696-4d86-adab-594d77bdbfdd/proofs", "body": "", "status": 200, - "response": { - "proof_id": "9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:07.640Z", - "meta": {}, - "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M05.802748S", - "queue_time_sec": 5.802748, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null - }, + "response": [ + { + "proof_id": "134477c9-5184-4630-a2e0-f11b0ec64ed0", + "circuit_name": "circom-multiplier2", + "project_name": "circom-multiplier2", + "circuit_id": "fc173dcc-3696-4d86-adab-594d77bdbfdd", + "circuit_type": "circom", + "date_created": "2024-08-21T23:46:04.414Z", + "meta": {}, + "perform_verify": false, + "status": "Ready", + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.666996S", + "compute_time_sec": 1.666996, + "compute_times": { + "prove": 0.31861, + "total": 1.67584, + "clean_up": 0.00885, + "file_setup": 0.54654, + "save_results": 0.66189, + "export_calldata": 0.12745, + "generate_witness_c": 0.01251 + }, + "file_size": 1350, + "proof": null, + "public": null, + "queue_time": "P0DT00H00M01.314761S", + "queue_time_sec": 1.314761, + "smart_contract_calldata": null, + "has_smart_contract_calldata": true, + "has_verification_key": true, + "verification_key": null, + "warnings": null, + "error": null + } + ], "rawHeaders": [ "Content-Length", - "1021", + "1180", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:17 GMT", + "Wed, 21 Aug 2024 23:46:12 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -9919,53 +24300,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/proof/fc109408-df38-4e7a-9057-0f635bca0971/status", "body": "", "status": 200, "response": { - "proof_id": "9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:07.640Z", - "meta": {}, - "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M05.802748S", - "queue_time_sec": 5.802748, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "proof_id": "fc109408-df38-4e7a-9057-0f635bca0971", + "status": "In Progress" }, "rawHeaders": [ "Content-Length", - "1021", + "77", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:18 GMT", + "Wed, 21 Aug 2024 23:46:13 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -9980,53 +24334,26 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/proof/fc109408-df38-4e7a-9057-0f635bca0971/status", "body": "", "status": 200, "response": { - "proof_id": "9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1", - "circuit_name": "circom-multiplier2", - "project_name": "circom-multiplier2", - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", - "circuit_type": "circom", - "date_created": "2024-08-19T23:04:07.640Z", - "meta": {}, - "perform_verify": false, - "status": "In Progress", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": null, - "compute_time_sec": null, - "compute_times": null, - "file_size": null, - "proof": null, - "public": null, - "queue_time": "P0DT00H00M05.802748S", - "queue_time_sec": 5.802748, - "smart_contract_calldata": null, - "has_smart_contract_calldata": false, - "has_verification_key": true, - "verification_key": null, - "warnings": null, - "error": null + "proof_id": "fc109408-df38-4e7a-9057-0f635bca0971", + "status": "Ready" }, "rawHeaders": [ "Content-Length", - "1021", + "71", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:20 GMT", + "Wed, 21 Aug 2024 23:46:15 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -10041,51 +24368,51 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/proof/fc109408-df38-4e7a-9057-0f635bca0971/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1", + "proof_id": "fc109408-df38-4e7a-9057-0f635bca0971", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:07.640Z", + "date_created": "2024-08-21T23:46:11.350Z", "meta": {}, "perform_verify": false, "status": "Ready", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M07.001842S", - "compute_time_sec": 7.001842, + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.810298S", + "compute_time_sec": 1.810298, "compute_times": { - "prove": 4.93051, - "total": 7.00692, - "clean_up": 0.00507, - "file_setup": 0.65726, - "save_results": 1.18804, - "export_calldata": 0.21168, - "generate_witness_c": 0.01436 + "prove": 0.47321, + "total": 1.81768, + "clean_up": 0.00738, + "file_setup": 0.50081, + "save_results": 0.61233, + "export_calldata": 0.13671, + "generate_witness_c": 0.08723 }, - "file_size": 1350, + "file_size": 1352, "proof": { "pi_a": [ - "19415544378824039204203346249607717925333766574568645488313306335260385216866", - "868886941279135550930240558246459387058515618991776453564396792916739854189", + "20158272986967997515283812431650350723967650725301215925264110646413321119229", + "20980022502136326646199744709785699558809868172346902844467778946069896460634", "1" ], "pi_b": [ [ - "19128664876388153344935855611911505446652827131787710975228149771020152787950", - "14001901675079319550429077467705422159377282586438331361265023064948968732876" + "14506323256982973729422497550811749661699868679656248369361614575025031005786", + "6998370488844781802054539355642863009375277710361989064577062429059567302025" ], [ - "7264305487653392353952752510609673199007019933550298671999058110961407552812", - "20156872498060567859344054043524584984110779731199544774761835086090230943391" + "6014636483201348750501905862809460470507477991078957295215420447140075739320", + "15372912427079416416819310459080395481398257338371839771594581911272890446858" ], [ "1", @@ -10093,8 +24420,8 @@ ] ], "pi_c": [ - "5457205882293216448736762426260738020164423962347397052432168580829950344489", - "10933015997300055464482455261668764943076010071339862178644771043147523955615", + "14267082095369436748775101609330946667361836362392616518421731834886803035821", + "10368083700777954121412326876455754369976272882385162507793494679899963807053", "1" ], "protocol": "groth16" @@ -10102,8 +24429,8 @@ "public": [ "20" ], - "queue_time": "P0DT00H00M05.802748S", - "queue_time_sec": 5.802748, + "queue_time": "P0DT00H00M01.404902S", + "queue_time_sec": 1.404902, "smart_contract_calldata": null, "has_smart_contract_calldata": true, "has_verification_key": true, @@ -10206,17 +24533,17 @@ }, "rawHeaders": [ "Content-Length", - "4557", + "4541", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:21 GMT", + "Wed, 21 Aug 2024 23:46:16 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options", @@ -10231,51 +24558,51 @@ { "scope": "https://sindri.app:443", "method": "GET", - "path": "/api/v1/proof/9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", + "path": "/api/v1/proof/fc109408-df38-4e7a-9057-0f635bca0971/detail?include_proof=true&include_public=true&include_smart_contract_calldata=false&include_verification_key=true", "body": "", "status": 200, "response": { - "proof_id": "9388f0b5-5ba5-4332-ae0e-7edb7fa8a2c1", + "proof_id": "fc109408-df38-4e7a-9057-0f635bca0971", "circuit_name": "circom-multiplier2", "project_name": "circom-multiplier2", - "circuit_id": "a2b5d905-5f79-4d0c-bc24-086e17b33f40", + "circuit_id": "9d9ba6cd-d91a-4f41-a712-ee670a9939cf", "circuit_type": "circom", - "date_created": "2024-08-19T23:04:07.640Z", + "date_created": "2024-08-21T23:46:11.350Z", "meta": {}, "perform_verify": false, "status": "Ready", - "team": "github-actions-qa", - "team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "team_slug": "github-actions-qa", - "circuit_team": "github-actions-qa", - "circuit_team_avatar_url": "https://gravatar.com/avatar/b51a15f382ac914391a58850ab343b00?s=400&d=identicon&r=x", - "circuit_team_slug": "github-actions-qa", - "compute_time": "P0DT00H00M07.001842S", - "compute_time_sec": 7.001842, + "team": "Evan Sangaline", + "team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "team_slug": "evan-sangaline", + "circuit_team": "Evan Sangaline", + "circuit_team_avatar_url": "https://static.sindri.app/team_avatars/06657897-a031-7556-8000-445e30e27a25.png", + "circuit_team_slug": "evan-sangaline", + "compute_time": "P0DT00H00M01.810298S", + "compute_time_sec": 1.810298, "compute_times": { - "prove": 4.93051, - "total": 7.00692, - "clean_up": 0.00507, - "file_setup": 0.65726, - "save_results": 1.18804, - "export_calldata": 0.21168, - "generate_witness_c": 0.01436 + "prove": 0.47321, + "total": 1.81768, + "clean_up": 0.00738, + "file_setup": 0.50081, + "save_results": 0.61233, + "export_calldata": 0.13671, + "generate_witness_c": 0.08723 }, - "file_size": 1350, + "file_size": 1352, "proof": { "pi_a": [ - "19415544378824039204203346249607717925333766574568645488313306335260385216866", - "868886941279135550930240558246459387058515618991776453564396792916739854189", + "20158272986967997515283812431650350723967650725301215925264110646413321119229", + "20980022502136326646199744709785699558809868172346902844467778946069896460634", "1" ], "pi_b": [ [ - "19128664876388153344935855611911505446652827131787710975228149771020152787950", - "14001901675079319550429077467705422159377282586438331361265023064948968732876" + "14506323256982973729422497550811749661699868679656248369361614575025031005786", + "6998370488844781802054539355642863009375277710361989064577062429059567302025" ], [ - "7264305487653392353952752510609673199007019933550298671999058110961407552812", - "20156872498060567859344054043524584984110779731199544774761835086090230943391" + "6014636483201348750501905862809460470507477991078957295215420447140075739320", + "15372912427079416416819310459080395481398257338371839771594581911272890446858" ], [ "1", @@ -10283,8 +24610,8 @@ ] ], "pi_c": [ - "5457205882293216448736762426260738020164423962347397052432168580829950344489", - "10933015997300055464482455261668764943076010071339862178644771043147523955615", + "14267082095369436748775101609330946667361836362392616518421731834886803035821", + "10368083700777954121412326876455754369976272882385162507793494679899963807053", "1" ], "protocol": "groth16" @@ -10292,8 +24619,8 @@ "public": [ "20" ], - "queue_time": "P0DT00H00M05.802748S", - "queue_time_sec": 5.802748, + "queue_time": "P0DT00H00M01.404902S", + "queue_time_sec": 1.404902, "smart_contract_calldata": null, "has_smart_contract_calldata": true, "has_verification_key": true, @@ -10396,17 +24723,17 @@ }, "rawHeaders": [ "Content-Length", - "4557", + "4541", "Content-Type", "application/json; charset=utf-8", "Cross-Origin-Opener-Policy", "same-origin", "Date", - "Mon, 19 Aug 2024 23:04:21 GMT", + "Wed, 21 Aug 2024 23:46:17 GMT", "Referrer-Policy", "same-origin", "Server", - "gunicorn", + "openresty", "Vary", "Cookie, origin", "X-Content-Type-Options",