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