UNPKG

@voctest/circomlibjs

Version:

Javascript library to work with circomlib

58 lines (48 loc) 1.22 kB
export default class SMTMemDb { constructor(F) { this.nodes = {}; this.root = F.zero; this.F = F; } async getRoot() { return this.root; } _key2str(k) { const F = this.F; const keyS = this.F.toString(k); return keyS; } _normalize(n) { const F = this.F; for (let i=0; i<n.length; i++) { n[i] = this.F.e(n[i]); } } async get(key) { const keyS = this._key2str(key); return this.nodes[keyS]; } async multiGet(keys) { const promises = []; for (let i=0; i<keys.length; i++) { promises.push(this.get(keys[i])); } return await Promise.all(promises); } async setRoot(rt) { this.root = rt; } async multiIns(inserts) { for (let i=0; i<inserts.length; i++) { const keyS = this._key2str(inserts[i][0]); this._normalize(inserts[i][1]); this.nodes[keyS] = inserts[i][1]; } } async multiDel(dels) { for (let i=0; i<dels.length; i++) { const keyS = this._key2str(dels[i]); delete this.nodes[keyS]; } } }