From 8629bdf03c175486c757b7084be4c275784a91ca Mon Sep 17 00:00:00 2001 From: 0xvikasrushi <0xvikas@gmail.com> Date: Sat, 3 Aug 2024 15:21:22 +0530 Subject: [PATCH] init: circomkit template --- circuits/add.circom | 10 ---------- package.json | 2 +- 2 files changed, 1 insertion(+), 11 deletions(-) delete mode 100644 circuits/add.circom diff --git a/circuits/add.circom b/circuits/add.circom deleted file mode 100644 index 5933ecf..0000000 --- a/circuits/add.circom +++ /dev/null @@ -1,10 +0,0 @@ -pragma circom 2.1.5; - -template Add() { - signal input a; - signal input b; - signal output out; - - out <== a + b; -} - diff --git a/package.json b/package.json index 546b064..4acca89 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "description": "Circomkit Template", + "description": "ecies circom implementation", "scripts": { "start": "npx ts-node ./src/index.ts", "test": "npx mocha",