Skip to content

SDK Integration with ZK Frameworks

2024-06-12

SDK Integration with ZK Frameworks

Install our npm package and point it at your circuit. You'll be sending proofs to FPGAs in just a few lines:

import { Prover } from '@accelfury/zk-sdk'
const prover = new Prover({ endpoint: 'https://api.accelfury.com' })
await prover.prove(circuit)

Next, submit the generated proof via the API usage guide. Our examples draw on techniques published by Ingonyama to maximize throughput.

Related Blog Posts