From 67b1c2231204b8dc0b547da6d45211cb9be10136 Mon Sep 17 00:00:00 2001 From: ioedeveloper Date: Sun, 14 Apr 2024 19:43:26 +0100 Subject: [PATCH] Restore simple.circom --- .../src/templates/semaphore/circuits/simple.circom | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 libs/remix-ws-templates/src/templates/semaphore/circuits/simple.circom diff --git a/libs/remix-ws-templates/src/templates/semaphore/circuits/simple.circom b/libs/remix-ws-templates/src/templates/semaphore/circuits/simple.circom new file mode 100644 index 0000000000..9a2120df7a --- /dev/null +++ b/libs/remix-ws-templates/src/templates/semaphore/circuits/simple.circom @@ -0,0 +1,11 @@ +pragma circom 2.0.0; + +template Multiplier2() { + signal input a; + signal input b; + signal output c; + c <== a*b; + } + + component main = Multiplier2(); + \ No newline at end of file