SrinivasJoshi / bandada

A system for managing privacy-preserving groups.

Home Page:https://bandada.pse.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bandada

Github license GitHub Workflow test GitHub Workflow style Coveralls Linter eslint Code style prettier

Groups are an important concept when we speak about privacy and zero knowledge technologies. They can be thought of as anonymity sets, and are a way to establish necessary trust between a set of participants. The goal of this project is to provide a comprehensive infrastructure to allow anyone to create and manage their own groups.

Bandada consists of a beck-end to store the groups and provide the API, two front-ends: the dashboard to manage groups and members and a demo application to allow end-users to join the groups, and the contracts Additionally, it also provides a set of JavaScript libraries to support developers.

Two types of groups can be created from the dashboard: manual or credential groups. In the former you can add members by entering IDs directly or by creating invite links, while in the latter you can define credentials that members must prove they have in order to access the group.

Once you create your manual group in the dashboard you can either create an API key to add or remove members or use the invite codes to add members with the @bandada/api-sdk library. Credential groups can instead be accessed by redirecting users to the appropriate page in the dashboard (i.e. https://bandada.pse.dev/credentials?group=<groupId>&member=<memberId>&provider=<providerName>).

Bandada also provides a preset of credential validators that can, however, be extended with the @bandada/credentials library.

For more information about our applications and libraries, use the links below to go to their specific README files.

βš™οΈ Applications

πŸ“¦ Libraries

Package Version Downloads
@bandada/hardhat NPM version Downloads
@bandada/contracts NPM version Downloads
@bandada/utils NPM version Downloads
@bandada/credentials NPM version Downloads
@bandada/api-sdk NPM version Downloads

πŸ›  Install

Clone this repository:

git clone https://github.com/privacy-scaling-explorations/bandada.git

and install the dependencies:

cd bandada && yarn

πŸ“œ Usage

Starting applications

Run the following command to start the applications in a development environment:

yarn dev

or the following command to start the applications in production mode:

yarn start

Building libraries/applications

Run the following command to build the libraries/applications:

yarn build

A dist folder will be created in each library/application.

Code quality and formatting

Run ESLint to analyze the code and catch bugs:

yarn lint

Run Prettier to check formatting rules:

yarn prettier

or to automatically format the code:

yarn prettier:write

Conventional commits

Semaphore uses conventional commits. A command line utility to commit using the correct syntax can be used by running:

yarn commit

It will also automatically check that the modified files comply with ESLint and Prettier rules.

Database

Bandada require a SQL database to work, which is used by the api application. Bandada can work with Postgres and SQLite. Other SQL flavors should work but have not been tested yet. You can pass the connection URL to the database using the environment variable (see below).

Testing

Run Jest to test the code with coverage:

yarn test

Running in Docker

You can also run Bandada using Docker by running below command in the project root:

docker-compose up -d

Local development

You can start dependencies essential for local development like a local ethereum network (with data persistance) and TheGraph node using the command below:

docker-compose -f docker-compose.dev.yml up -d

The ethereum node (Ganache) will start on port 8545 and will have the following accounts pre-funded with 100 ETH:

0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266
Private Key: 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80

This is the same first account generated by Hardhat network as well.

Deploy the contracts to the local network using the below command:

yarn workspace contracts deploy:bandada-semaphore --network local

The addresses of contracts deployed in a fresh local network would be:

Pairing library has been deployed to:               0x5FbDB2315678afecb367f032d93F642f64180aa3
SemaphoreVerifier contract has been deployed to:    0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512
Bandada contract has been deployed to:             0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0
BandadaSemaphore contract has been deployed to:    0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9

These values are set as defaults in libs/utils/src/contract-addresses.ts. If you change the contract and deploy again, new address need to be set here.

To reset the local network or TheGraph node, you can stop the docker containers, and delete the respective folders inside ./.data.

Environment variables

Below are the ENV variables used by the api:

Key Description
DB_TYPE Type of the SQL database - postgres/sqlite.
DB_URL Connection string for the database. Path to DB file in case of sqlite.
API_URL Public URL of the api.
DASHBOARD_URL Public URL of the dashboard.
ETHEREUM_NETWORK Ethereum network where the contract is deployed.
IRON_SESSION_PASSWORD Secret password used for iron-session.
INFURA_API_KEY API Key for Infura. This is used for executing blockchain transactions.
BACKEND_PRIVATE_KEY Ethereum wallet private key used for making blockchain transactions.
SIWE_STATEMENT Statement used as a SIWE message.
GITHUB_CLIENT_ID Github client id used for credential groups.
GITHUB_CLIENT_SECRET Github client secret used for credential groups.
TWITTER_REDIRECT_URI Twitter redirect URL used for credential groups.
TWITTER_CLIENT_ID Twitter client id used for credential groups.
TWITTER_CLIENT_SECRET Twitter client secret used for credential groups.

API

Bandada provides APIs to get groups data and manage group members. You can add or remove members in a group that you are admin of, using the API key.

To enable API access for a group, you can go to the group page in the dashboard, and switch on the "Enable API Access" toggle button. Once the API is enabled, a new API key will be generated for you.

You can disable the API access anytime using the same toggle button.

For a complete list of the endpoints you can use go to https://api.bandada.pse.dev.

About

A system for managing privacy-preserving groups.

https://bandada.pse.dev

License:MIT License


Languages

Language:TypeScript 96.7%Language:Solidity 2.4%Language:Dockerfile 0.6%Language:HTML 0.3%Language:Shell 0.0%Language:JavaScript 0.0%