Installation and setup
- Add
.env
file (see.env.example
). - Generate RSA key pair with
pnpm run generate-keypair
. - Download zkey files using
pnpm run download-zkeys:{type}
(only test type is available for now). - Make sure you copied RSA public key to your application. This will be needed for encrypting
Authorization
header and coordinator private key for proof generation. Also it can be accessed through API methodGET v1/proof/publicKey
. - Run
pnpm run start
to run the service. - All API calls must be called with
Authorization
header, where the value is encrypted with RSA public key you generated before. Header value contains message signature and message digest created byCOORDINATOR_ADDRESSES
. The format ispublicEncrypt({signature}:{digest})
. Make sure you setCOORDINATOR_ADDRESSES
env variable and sign any message with the addresses from your application (see AccountSignatureGuard). - Proofs can be generated with
POST v1/proof/generate
API method or with Websockets (see dto spec, controller and wsgateway).
Subgraph deployment
It is possible to deploy subgraph using coordinator service.
First, you need to setup subgraph and create a project. Subgraph dashboard.
Then, set env variables:
# Subgraph name
SUBGRAPH_NAME="maci-subgraph"
# Subgraph provider url
SUBGRAPH_PROVIDER_URL=https://api.studio.thegraph.com/deploy/
# Subgraph deploy key
SUBGRAPH_DEPLOY_KEY=*******
# Subgraph project folder
SUBGRAPH_FOLDER=../subgraph
After deployment, subgraph url will be available in studio dashboard and you can use this type of url to get latest deployed version in your application:
https://api.studio.thegraph.com/.../{SUBGRAPH_NAME}/version/latest