UNPKG

o1js

Version:

TypeScript framework for zk-SNARKs and zkApps

14 lines (9 loc) 260 B
import type { Cache } from '../../lib/proof-system/cache.js'; export { setSrsCache, srsCache, unsetSrsCache }; let srsCache: Cache | undefined; function setSrsCache(cache: Cache) { srsCache = cache; } function unsetSrsCache() { srsCache = undefined; }