@ocap/tx-pipeline 1.19.1 → 1.19.3
Sign up to get free protection for your applications and to get access to all the features.
@@ -3,6 +3,7 @@
|
|
3
3
|
const isEqual = require('lodash/isEqual');
|
4
4
|
const mergeWith = require('lodash/mergeWith');
|
5
5
|
const clone = require('lodash/clone');
|
6
|
+
const pickBy = require('lodash/pickBy');
|
6
7
|
const { BN, isSameDid } = require('@ocap/util');
|
7
8
|
const { CustomError: Error } = require('@ocap/util/lib/error');
|
8
9
|
const { groupReceiptTokenChanges, create: createTxState } = require('@ocap/state/lib/states/tx');
|
@@ -11,7 +12,6 @@ const {
|
|
11
12
|
types: { RoleType },
|
12
13
|
} = require('@ocap/mcrypto');
|
13
14
|
const { toTypeInfo } = require('@arcblock/did');
|
14
|
-
const { pickBy } = require('lodash');
|
15
15
|
|
16
16
|
function groupStatesByAddress(context) {
|
17
17
|
/**
|
package/package.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
"publishConfig": {
|
4
4
|
"access": "public"
|
5
5
|
},
|
6
|
-
"version": "1.19.
|
6
|
+
"version": "1.19.3",
|
7
7
|
"description": "Pipeline runner and common pipelines to process transactions",
|
8
8
|
"main": "lib/index.js",
|
9
9
|
"files": [
|
@@ -29,16 +29,16 @@
|
|
29
29
|
"elliptic": "6.5.3"
|
30
30
|
},
|
31
31
|
"dependencies": {
|
32
|
-
"@arcblock/did": "1.19.
|
33
|
-
"@arcblock/did-util": "1.19.
|
34
|
-
"@ocap/mcrypto": "1.19.
|
35
|
-
"@ocap/message": "1.19.
|
36
|
-
"@ocap/state": "1.19.
|
37
|
-
"@ocap/util": "1.19.
|
38
|
-
"@ocap/wallet": "1.19.
|
32
|
+
"@arcblock/did": "1.19.3",
|
33
|
+
"@arcblock/did-util": "1.19.3",
|
34
|
+
"@ocap/mcrypto": "1.19.3",
|
35
|
+
"@ocap/message": "1.19.3",
|
36
|
+
"@ocap/state": "1.19.3",
|
37
|
+
"@ocap/util": "1.19.3",
|
38
|
+
"@ocap/wallet": "1.19.3",
|
39
39
|
"debug": "^4.3.6",
|
40
40
|
"empty-value": "^1.0.1",
|
41
41
|
"lodash": "^4.17.21"
|
42
42
|
},
|
43
|
-
"gitHead": "
|
43
|
+
"gitHead": "756076dad0df7468beecc95c8effd55f8c4c4f49"
|
44
44
|
}
|