title: "SDK Integration with ZK Frameworks" date: "2024-06-12" summary: "Steps to connect zero-knowledge frameworks to AccelFury."
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.