How to use the write function from bfj
Find comprehensive JavaScript bfj.write code examples handpicked from public code repositorys.
101 102 103 104 105 106 107 108 109 110
return _asyncToGenerator(function* () { const statsFilepath = path.resolve(_this.compiler.outputPath, _this.opts.statsFilename); mkdir.sync(path.dirname(statsFilepath)); try { yield bfj.write(statsFilepath, stats, { space: 2, promises: 'ignore', buffers: 'ignore', maps: 'ignore',
1
1
1
+ 2 other calls in file
8435 8436 8437 8438 8439 8440 8441 8442 8443 8444
if (!zkSnark[protocol]) throw new Error("Invalid protocol"); const setup = zkSnark[protocol].setup(cir, options.verbose); await zkey.utils.write(zkeyName, setup.vk_proof); await bfj.write(provingKeyName, stringifyBigInts(setup.vk_proof), { space: 1 }); await bfj.write(verificationKeyName, stringifyBigInts(setup.vk_verifier), { space: 1 }); return 0;
0
0
1
+ 67 other calls in file
31 32 33 34 35 36 37 38 39 40 41
//File System //https://nodejs.org/api/fs.html ipcMain.handle('fs:writeFileJSON', async (event, file, object) => { try { await bfj.write(file, object) return true; } catch (e) { console.error(e); return false;
0
0
1
+ 24 other calls in file