@devtion/backend 0.0.0-9843891 → 0.0.0-a7b749e
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @module @p0tion/backend
|
|
3
|
-
* @version 1.2.
|
|
3
|
+
* @version 1.2.4
|
|
4
4
|
* @file MPC Phase 2 backend for Firebase services management
|
|
5
5
|
* @copyright Ethereum Foundation 2022
|
|
6
6
|
* @license MIT
|
|
@@ -856,7 +856,7 @@ const initEmptyWaitingQueueForCircuit = functions__namespace
|
|
|
856
856
|
const finalizeCeremony = functions__namespace
|
|
857
857
|
.region("europe-west1")
|
|
858
858
|
.runWith({
|
|
859
|
-
memory: "
|
|
859
|
+
memory: "1GB"
|
|
860
860
|
})
|
|
861
861
|
.https.onCall(async (data, context) => {
|
|
862
862
|
if (!context.auth || !context.auth.token.coordinator)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @module @p0tion/backend
|
|
3
|
-
* @version 1.2.
|
|
3
|
+
* @version 1.2.4
|
|
4
4
|
* @file MPC Phase 2 backend for Firebase services management
|
|
5
5
|
* @copyright Ethereum Foundation 2022
|
|
6
6
|
* @license MIT
|
|
@@ -833,7 +833,7 @@ const initEmptyWaitingQueueForCircuit = functions
|
|
|
833
833
|
const finalizeCeremony = functions
|
|
834
834
|
.region("europe-west1")
|
|
835
835
|
.runWith({
|
|
836
|
-
memory: "
|
|
836
|
+
memory: "1GB"
|
|
837
837
|
})
|
|
838
838
|
.https.onCall(async (data, context) => {
|
|
839
839
|
if (!context.auth || !context.auth.token.coordinator)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devtion/backend",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-a7b749e",
|
|
4
4
|
"description": "MPC Phase 2 backend for Firebase services management",
|
|
5
5
|
"repository": "git@github.com:privacy-scaling-explorations/p0tion.git",
|
|
6
6
|
"homepage": "https://github.com/privacy-scaling-explorations/p0tion",
|
|
@@ -86,5 +86,5 @@
|
|
|
86
86
|
"publishConfig": {
|
|
87
87
|
"access": "public"
|
|
88
88
|
},
|
|
89
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "b0c950ef8732e89d3a86374e53d04819cbceb8ca"
|
|
90
90
|
}
|
|
@@ -273,7 +273,7 @@ export const initEmptyWaitingQueueForCircuit = functions
|
|
|
273
273
|
export const finalizeCeremony = functions
|
|
274
274
|
.region("europe-west1")
|
|
275
275
|
.runWith({
|
|
276
|
-
memory: "
|
|
276
|
+
memory: "1GB"
|
|
277
277
|
})
|
|
278
278
|
.https.onCall(async (data: { ceremonyId: string }, context: functions.https.CallableContext): Promise<any> => {
|
|
279
279
|
if (!context.auth || !context.auth.token.coordinator) logAndThrowError(COMMON_ERRORS.CM_NOT_COORDINATOR_ROLE)
|