Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/saleel/stealthnote


https://github.com/saleel/stealthnote

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# StealthNote

StealthNote is an application for people in an organization to anonymously broadcast messages.

we use Zero Knowledge Proofs to prove that you are part of an organization by verifying JWT token generated for your Google Workspace account.

## How to run

Set your environment variables:
```sh
# Supabase credentials
SUPABASE_URL=
SUPABASE_SERVICE_ROLE_KEY=

# Google Client ID
NEXT_PUBLIC_GOOGLE_CLIENT_ID=
```

Run below commands to start the Next.js app:
```sh
#PWD = app
yarn
yarn dev
```


## Building circuits

```sh
#PWD = circuits
nargo compile
```

- Copy `circuits/target/circui.json` to `app/assets/circuit.json`
- Uncomment [these lines](./app/lib/utils.ts#L13) to generate new vkey and save it to `app/assets/circuit-vkey.json`


Built with [Noir](https://www.noir-lang.org/).

Inspiration: [https://www.nozee.xyz/](https://www.nozee.xyz/)