@ocap/asset 1.17.6 → 1.17.7
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/index.d.ts +3 -3
- package/package.json +10 -10
package/lib/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { LiteralUnion, PartialDeep } from 'type-fest';
|
|
2
2
|
import type { WalletObject } from '@ocap/wallet';
|
|
3
|
-
import type {
|
|
3
|
+
import type { TAssetFactoryState, TCreateAssetTx } from '@ocap/types';
|
|
4
4
|
declare type $TSFixMe = any;
|
|
5
|
-
export declare type TPickedFactoryState = PartialDeep<
|
|
5
|
+
export declare type TPickedFactoryState = PartialDeep<TAssetFactoryState>;
|
|
6
6
|
export declare type TIssuer = {
|
|
7
7
|
name: string;
|
|
8
8
|
wallet: WalletObject;
|
|
@@ -22,7 +22,7 @@ export declare type TInputMap = {
|
|
|
22
22
|
};
|
|
23
23
|
export declare type TMintResult = {
|
|
24
24
|
address: string;
|
|
25
|
-
asset:
|
|
25
|
+
asset: TCreateAssetTx;
|
|
26
26
|
};
|
|
27
27
|
export declare type TPreMintResult = TMintResult & {
|
|
28
28
|
variables: TInputMap;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ocap/asset",
|
|
3
3
|
"description": "Utility to work with asset and factory on ArcBlock blockchain",
|
|
4
|
-
"version": "1.17.
|
|
4
|
+
"version": "1.17.7",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "wangshijun",
|
|
7
7
|
"email": "shijun@arcblock.io",
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
"wangshijun <shijun@arcblock.io> (https://github.com/wangshijun)"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@arcblock/did": "1.17.
|
|
22
|
-
"@arcblock/did-util": "1.17.
|
|
23
|
-
"@arcblock/vc": "1.17.
|
|
24
|
-
"@ocap/contract": "1.17.
|
|
25
|
-
"@ocap/mcrypto": "1.17.
|
|
26
|
-
"@ocap/types": "1.17.
|
|
27
|
-
"@ocap/util": "1.17.
|
|
28
|
-
"@ocap/wallet": "1.17.
|
|
21
|
+
"@arcblock/did": "1.17.7",
|
|
22
|
+
"@arcblock/did-util": "1.17.7",
|
|
23
|
+
"@arcblock/vc": "1.17.7",
|
|
24
|
+
"@ocap/contract": "1.17.7",
|
|
25
|
+
"@ocap/mcrypto": "1.17.7",
|
|
26
|
+
"@ocap/types": "1.17.7",
|
|
27
|
+
"@ocap/util": "1.17.7",
|
|
28
|
+
"@ocap/wallet": "1.17.7",
|
|
29
29
|
"debug": "^4.3.3",
|
|
30
30
|
"flat": "^5.0.2",
|
|
31
31
|
"is-absolute-url": "^3.0.3",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"build": "tsc",
|
|
74
74
|
"build:watch": "npm run build -- -w"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "02d9fa7c14c70f0a5fc1dcc5dc5506e43cb71ba5"
|
|
77
77
|
}
|