@ocap/resolver 1.14.7 → 1.14.11
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.
- package/lib/hooks.js +1 -0
- package/lib/index.js +1 -1
- package/package.json +13 -13
package/lib/hooks.js
CHANGED
|
@@ -203,6 +203,7 @@ const onJoinRollup = async (tx, ctx, indexdb) => {
|
|
|
203
203
|
const address = tx.tx.from;
|
|
204
204
|
const doc = await ensureRollupValidator(address, tx.tx.itxJson.rollup, ctx, indexdb);
|
|
205
205
|
|
|
206
|
+
doc.endpoint = tx.tx.itxJson.endpoint;
|
|
206
207
|
doc.joinTime = tx.time;
|
|
207
208
|
doc.renaissanceTime = tx.time;
|
|
208
209
|
doc.leaveTime = '';
|
package/lib/index.js
CHANGED
|
@@ -9,7 +9,7 @@ const isEqual = require('lodash/isEqual');
|
|
|
9
9
|
const uniqBy = require('lodash/unionBy');
|
|
10
10
|
const Config = require('@ocap/config');
|
|
11
11
|
const states = require('@ocap/state');
|
|
12
|
-
const Joi = require('@
|
|
12
|
+
const Joi = require('@arcblock/validator');
|
|
13
13
|
const md5 = require('@ocap/util/lib/md5');
|
|
14
14
|
const CustomError = require('@ocap/util/lib/error');
|
|
15
15
|
const { types } = require('@ocap/mcrypto');
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.14.
|
|
6
|
+
"version": "1.14.11",
|
|
7
7
|
"description": "GraphQL resolver built upon ocap statedb and GQL layer",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"files": [
|
|
@@ -22,18 +22,18 @@
|
|
|
22
22
|
"jest": "^27.3.1"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@arcblock/did": "1.14.
|
|
26
|
-
"@arcblock/did-util": "1.14.
|
|
27
|
-
"@
|
|
28
|
-
"@ocap/
|
|
29
|
-
"@ocap/
|
|
30
|
-
"@ocap/
|
|
31
|
-
"@ocap/
|
|
32
|
-
"@ocap/
|
|
33
|
-
"@ocap/
|
|
34
|
-
"@ocap/
|
|
35
|
-
"debug": "^4.3.
|
|
25
|
+
"@arcblock/did": "1.14.11",
|
|
26
|
+
"@arcblock/did-util": "1.14.11",
|
|
27
|
+
"@arcblock/validator": "1.14.11",
|
|
28
|
+
"@ocap/config": "1.14.11",
|
|
29
|
+
"@ocap/indexdb": "1.14.11",
|
|
30
|
+
"@ocap/mcrypto": "1.14.11",
|
|
31
|
+
"@ocap/message": "1.14.11",
|
|
32
|
+
"@ocap/state": "1.14.11",
|
|
33
|
+
"@ocap/tx-protocols": "1.14.11",
|
|
34
|
+
"@ocap/util": "1.14.11",
|
|
35
|
+
"debug": "^4.3.3",
|
|
36
36
|
"lodash": "^4.17.21"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "df9681a5e8ef4cff1972c5e7be5137f72b60f1c7"
|
|
39
39
|
}
|