SHIELD

SHIELD; A Swiss Army Knife for ZKPs Development

Overview

The SHIELD is a development framework for circom developers; Circom development requires a set of pre-requisite skills. From both technical and mathematical perspectives. SHIELD makes these pre-requisite skills acquisition easy and makes the circom circuits development as hardhat/truffle does for the smart solidity contracts; it also improves the developer experience and makes it attractive to increase the mass adoption of zkps.

SHIELD CLI is the main component you interact with when using SHIELD. It's a flexible and extensible CLI tool that helps you to generate optimized boilerplates and circuits compilation without writing .sh compilation script files. And develop interfaces to interact with smart contracts and dApps.

SHIELD also makes the circom debugging easy. You get circom stack traces, input/output signal values, circom circuit logs, and detailed calculation/ mathematical equations of every constraint getting passed or failed in the circuit.

Installation

SHIELD is used through global installation in your system. This way, you can use the SHIELD cli anywhere and compile circuits without needing any external dependency or npm project setup.

To install it, you need to have the npm, or you can use another package manager. For example, to install SHIELD globally, run the following:


$ npm i -g @xorddotcom/shield

or with yarn


$ yarn add -g @xorddotcom/shield

Last updated