@ocap/asset 1.30.2 → 1.30.4
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/esm/index.d.mts +7 -87
- package/esm/index.mjs +4 -248
- package/esm/mint/client.d.mts +17 -0
- package/esm/mint/client.mjs +32 -0
- package/esm/mint/server.d.mts +34 -0
- package/esm/mint/server.mjs +49 -0
- package/esm/mint/shared.d.mts +47 -0
- package/esm/mint/shared.mjs +182 -0
- package/esm/mint.d.mts +3 -0
- package/esm/mint.mjs +4 -0
- package/esm/types.d.mts +39 -0
- package/esm/types.mjs +1 -0
- package/esm/utils.d.mts +13 -0
- package/esm/utils.mjs +24 -0
- package/esm/validate.d.mts +8 -0
- package/esm/validate.mjs +64 -0
- package/lib/index.cjs +11 -266
- package/lib/index.d.cts +6 -87
- package/lib/mint/client.cjs +34 -0
- package/lib/mint/client.d.cts +17 -0
- package/lib/mint/server.cjs +53 -0
- package/lib/mint/server.d.cts +34 -0
- package/lib/mint/shared.cjs +187 -0
- package/lib/mint/shared.d.cts +47 -0
- package/lib/mint.cjs +6 -0
- package/lib/mint.d.cts +3 -0
- package/lib/types.cjs +0 -0
- package/lib/types.d.cts +39 -0
- package/lib/utils.cjs +27 -0
- package/lib/utils.d.cts +13 -0
- package/lib/validate.cjs +71 -0
- package/lib/validate.d.cts +8 -0
- package/package.json +45 -10
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@ocap/asset",
|
|
3
3
|
"description": "Utility to work with asset and factory on ArcBlock blockchain",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "1.30.
|
|
5
|
+
"version": "1.30.4",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "wangshijun",
|
|
8
8
|
"email": "shijun@arcblock.io",
|
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
"wangshijun <shijun@arcblock.io> (https://github.com/wangshijun)"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@arcblock/did": "1.30.
|
|
23
|
-
"@arcblock/did-util": "1.30.
|
|
24
|
-
"@arcblock/validator": "1.30.
|
|
25
|
-
"@arcblock/vc": "1.30.
|
|
26
|
-
"@ocap/contract": "1.30.
|
|
27
|
-
"@ocap/mcrypto": "1.30.
|
|
28
|
-
"@ocap/types": "1.30.
|
|
29
|
-
"@ocap/util": "1.30.
|
|
30
|
-
"@ocap/wallet": "1.30.
|
|
22
|
+
"@arcblock/did": "1.30.4",
|
|
23
|
+
"@arcblock/did-util": "1.30.4",
|
|
24
|
+
"@arcblock/validator": "1.30.4",
|
|
25
|
+
"@arcblock/vc": "1.30.4",
|
|
26
|
+
"@ocap/contract": "1.30.4",
|
|
27
|
+
"@ocap/mcrypto": "1.30.4",
|
|
28
|
+
"@ocap/types": "1.30.4",
|
|
29
|
+
"@ocap/util": "1.30.4",
|
|
30
|
+
"@ocap/wallet": "1.30.4",
|
|
31
31
|
"debug": "^4.4.3",
|
|
32
32
|
"flat": "^5.0.2",
|
|
33
33
|
"is-absolute-url": "^3.0.3",
|
|
@@ -59,6 +59,41 @@
|
|
|
59
59
|
"types": "./esm/index.d.mts",
|
|
60
60
|
"import": "./esm/index.mjs",
|
|
61
61
|
"default": "./lib/index.cjs"
|
|
62
|
+
},
|
|
63
|
+
"./mint": {
|
|
64
|
+
"types": "./esm/mint.d.mts",
|
|
65
|
+
"import": "./esm/mint.mjs",
|
|
66
|
+
"default": "./lib/mint.cjs"
|
|
67
|
+
},
|
|
68
|
+
"./mint/shared": {
|
|
69
|
+
"types": "./esm/mint/shared.d.mts",
|
|
70
|
+
"import": "./esm/mint/shared.mjs",
|
|
71
|
+
"default": "./lib/mint/shared.cjs"
|
|
72
|
+
},
|
|
73
|
+
"./mint/client": {
|
|
74
|
+
"types": "./esm/mint/client.d.mts",
|
|
75
|
+
"import": "./esm/mint/client.mjs",
|
|
76
|
+
"default": "./lib/mint/client.cjs"
|
|
77
|
+
},
|
|
78
|
+
"./mint/server": {
|
|
79
|
+
"types": "./esm/mint/server.d.mts",
|
|
80
|
+
"import": "./esm/mint/server.mjs",
|
|
81
|
+
"default": "./lib/mint/server.cjs"
|
|
82
|
+
},
|
|
83
|
+
"./validate": {
|
|
84
|
+
"types": "./esm/validate.d.mts",
|
|
85
|
+
"import": "./esm/validate.mjs",
|
|
86
|
+
"default": "./lib/validate.cjs"
|
|
87
|
+
},
|
|
88
|
+
"./utils": {
|
|
89
|
+
"types": "./esm/utils.d.mts",
|
|
90
|
+
"import": "./esm/utils.mjs",
|
|
91
|
+
"default": "./lib/utils.cjs"
|
|
92
|
+
},
|
|
93
|
+
"./types": {
|
|
94
|
+
"types": "./esm/types.d.mts",
|
|
95
|
+
"import": "./esm/types.mjs",
|
|
96
|
+
"default": "./lib/types.cjs"
|
|
62
97
|
}
|
|
63
98
|
},
|
|
64
99
|
"files": [
|