Prover Market — CryptoForge

ZK Circuit Templates

$14.99

Description

Library of production-ready ZK circuit templates for common use cases. Includes Merkle proof verification, range proofs, identity attestation, vote tallying, and token ownership proofs. Each template includes Circom and Noir implementations with TypeScript proof generation helpers.

Details

Category: circuits
Files: 20
Chains: Ethereum, Arbitrum, zkSync, Scroll

Circom 2.1+ Noir 0.30+ TypeScript snarkjs bb.js Ethereum Arbitrum zkSync Scroll
zk-circuit-templates.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

/// @title ZK Circuit Templates
/// @notice Common circuit templates (Merkle proofs, range proofs, identity).
contract ZkCircuitTemplates {
    address public immutable owner;
    uint256 public constant VERSION = 1;

    event Initialized(address indexed deployer);

    constructor() {
        owner = msg.sender;
        emit Initialized(msg.sender);
    }

    // ... full implementation in purchased package
}
$14.99
Buy Now — $14.99
← Back to store