From abf4ed7bf4e4638c1948fb133815c8f30cd26804 Mon Sep 17 00:00:00 2001 From: yann300 Date: Fri, 2 Feb 2024 15:11:25 +0100 Subject: [PATCH] Update sindri.ts --- .../src/script-templates/sindri/sindri.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/libs/remix-ws-templates/src/script-templates/sindri/sindri.ts b/libs/remix-ws-templates/src/script-templates/sindri/sindri.ts index a7dffed601..0f9092201d 100644 --- a/libs/remix-ws-templates/src/script-templates/sindri/sindri.ts +++ b/libs/remix-ws-templates/src/script-templates/sindri/sindri.ts @@ -21,8 +21,10 @@ export const createCircuit = async (entryPoint: string, apiKey: string) => { if (file === entryPoint) continue files.push(new File([deps[file]], file)) } - + + console.log(`creating circuit "${entryPoint}"...`) const circuitProject = await client.createCircuit(files) + console.log(`circuit created ${circuitProject.circuit_id}`) return circuitProject } @@ -34,7 +36,9 @@ export const createCircuit = async (entryPoint: string, apiKey: string) => { */ export const proveCircuit = async (circuitId: string, signals: { [id: string]: string }, apiKey: string) => { client.authorize({ apiKey }) + console.log(`proving circuit ${circuitId}...`) const proof = await client.proveCircuit(circuitId, JSON.stringify(signals)) + console.log(`proof id: ${proof.proof_id}`) return proof } @@ -55,4 +59,4 @@ export const saveCircuit = async (circuitProject) => { */ export const loadCircuit = async (circuitId: string) => { return JSON.parse(await remix.call('fileManager', 'readFile', `.sindri/${circuitId}.json`)) -} \ No newline at end of file +}