UNPKG

@nori-zk/proof-conversion

Version:

Verifying zkVM proofs inside o1js circuits, to generate Mina compatible proof

13 lines (12 loc) 431 B
import { G2Line } from '../../lines/index.js'; declare class LineParser { g2_lines: Array<G2Line>; tau_lines: Array<G2Line>; constructor(g2_lines: Array<G2Line>, tau_lines: Array<G2Line>); static init(): LineParser; parse_g2(from: number, to: number): G2Line[]; parse_tau(from: number, to: number): G2Line[]; frobenius_g2_lines(): G2Line[]; frobenius_tau_lines(): G2Line[]; } export { LineParser };