An easy-to-configure, deploy and maintain cloud infrastructure solution for automating the coordination, scalability, and storage of your Groth16 zkSNARKs Phase 2 Trusted Setup ceremonies.
This library provides everything needed to configure, deploy and manage the infrastructure required to run one or more Phase 2 Trusted Setup ceremonies. |
---|
Launching the ready-to-run customized scripts everyone could handle whatever is needed to accomplish the users authentication, ceremony setup, coordination and finalization. You could count on the combination of services provided by the far most popular cloud solutions in the market, as AWS for S3 Storage and GCP Firebase for Authentication, Firestore DB and, Cloud Functions services.
Prerequisites
- Node.js version 16.0 or higher.
- Yarn version 3.5.0 or higher.
- A Firebase Application w/ active billing (Blaze Plan) in order to support Cloud Functions deployment.
- Follow the Installation and Usage guide.
- Generate and store a configuration file with your service account's credentials as stated in this documentation inside the
packages/backend/serviceAccountKey.json
file. - Rename the
.firebaserc
production project alias with your Firebase project name.
Navigate to backend package by running
cd packages/backend
Copy the .default.env
file as .env
:
cp .env.default .env
And add your environment variables.
Login using your Google Account to Firebase CLI running
yarn firebase:login
Run the following to logout
yarn firebase:logout
Initialize a new Firebase project interactively
yarn firebase:init
- Login or create a new AWS Account.
- The AWS free tier account will cover a good number of requests for ceremonies but there could be some costs based on your ceremony circuits size.
- Create an access key for a user with Admin privileges (NOT ROOT USER)
- Setup the
awscli
(docs) and add the keys for this user. - Install
terraform
(docs) - Decide on an AWS region (by default this is us-east-1) - if you want to change you will need to do the following:
- update aws/lambda/index.mjs (exact line) to the new region
- update main.tf (exact line) to the new region
- zip the Lambda folder:
cd lambda
zip -r ../lambda.zip .
- Run terraform:
terraform init
terraform plan
terraform apply
terraform output secret_key
- To print the secret access key for the IAM user
- Store the other values (sns_topic_arn etc.)
- These will be needed for the .env file configuration
The IAM user created with the steps above can be used for all p0tion's features.
Deploy the current configuration to the prod
project running
yarn firebase:deploy
To deploy only the latest Cloud Functions run
yarn firebase:deploy-functions
To deploy only the latest Firestore configuration and rules run
yarn firebase:deploy-firestore
Firebase provides a Local Emulator Suite as a set of advanced dev-tools w/ a rich user-interface to build and test apps locally using Firebase services as Cloud Functions, Firestore and Authentication.
Prerequisites
- You will need Java JDK version 11 or higher to run the Firebase Local Emulator.
To start the Emulator run
yarn emulator:serve
To emulate only Cloud Functions service run
yarn emulator:serve-functions
To run the Emulator shell in a new command line window run
yarn emulator:shell
To run tests (e2e/unit) locally in the Emulator run
yarn test:emulator