Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into better-error-in-func
Browse files Browse the repository at this point in the history
  • Loading branch information
glamperd committed Jul 5, 2024
2 parents e7dac85 + d61f85c commit 6f686a5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
| p0tion has been intentionally designed as an agnostic-from-ceremony public good toolkit, with the aim of making Groth16 zk-applications scale and become production-ready in a safe and secure manner by running Phase 2 Trusted Setup ceremonies. |
| -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

Our design philosophy ensures that p0tion stands as the optimal choice for running secure Groth16 zk-applications via automated phase2 ceremonies. The entire process has been streamlined through the easy to use and configure infrastructure, simplifying coordination, scalability, and minimizing the burden of conducting ceremonies from scratch. Additionally, our clear and user-friendly documentation and code, as well as rapid onboarding and deployment, guarantee an adaptable tool that can easily accommodate the evolving needs of developers
Our design philosophy ensures that p0tion stands as the optimal choice for running secure Groth16 zk-applications via automated phase2 ceremonies. The entire process has been streamlined through the easy to use and configure infrastructure, simplifying coordination, scalability, and minimizing the burden of conducting ceremonies from scratch. Additionally, our clear and user-friendly documentation and code, as well as rapid onboarding and deployment, guarantee an adaptable tool that can easily accommodate the evolving needs of developers.

## 📦 Packages

Expand Down
6 changes: 5 additions & 1 deletion packages/backend/firebase.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
},
"functions": {
"predeploy": "yarn --cwd \"$RESOURCE_DIR\" build",
"source": "."
"source": ".",
"ignore": [
"node_modules",
"aws"
]
},
"emulators": {
"singleProjectMode": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/functions/ceremony.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ export const initEmptyWaitingQueueForCircuit = functions
export const finalizeCeremony = functions
.region("europe-west1")
.runWith({
memory: "512MB"
memory: "1GB"
})
.https.onCall(async (data: { ceremonyId: string }, context: functions.https.CallableContext): Promise<any> => {
if (!context.auth || !context.auth.token.coordinator) logAndThrowError(COMMON_ERRORS.CM_NOT_COORDINATOR_ROLE)
Expand Down

0 comments on commit 6f686a5

Please sign in to comment.