@ocap/sdk 1.18.108 → 1.18.110
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/index.d.ts +8 -0
- package/package.json +7 -7
package/index.d.ts
CHANGED
|
@@ -1074,6 +1074,10 @@ declare namespace GraphQLClient {
|
|
|
1074
1074
|
assets: string[];
|
|
1075
1075
|
}
|
|
1076
1076
|
|
|
1077
|
+
interface DelegationFilterInput {
|
|
1078
|
+
delegations: string[];
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1077
1081
|
interface FactoryFilterInput {
|
|
1078
1082
|
factories: string[];
|
|
1079
1083
|
}
|
|
@@ -1234,6 +1238,7 @@ declare namespace GraphQLClient {
|
|
|
1234
1238
|
txFilter: GraphQLClient.TxFilterInput;
|
|
1235
1239
|
rollupFilter: GraphQLClient.RollupFilterInput;
|
|
1236
1240
|
stakeFilter: GraphQLClient.StakeFilterInput;
|
|
1241
|
+
delegationFilter: GraphQLClient.DelegationFilterInput;
|
|
1237
1242
|
}
|
|
1238
1243
|
|
|
1239
1244
|
interface RequestSearchInput {
|
|
@@ -2502,6 +2507,8 @@ declare namespace GraphQLClient {
|
|
|
2502
2507
|
txSent: number;
|
|
2503
2508
|
spentAllowance: string;
|
|
2504
2509
|
lastTx: number;
|
|
2510
|
+
decimal: number;
|
|
2511
|
+
symbol: string;
|
|
2505
2512
|
}
|
|
2506
2513
|
|
|
2507
2514
|
interface TokenState {
|
|
@@ -2825,6 +2832,7 @@ declare namespace GraphQLClient {
|
|
|
2825
2832
|
txFilter: GraphQLClient.TxFilterInput;
|
|
2826
2833
|
rollupFilter: GraphQLClient.RollupFilterInput;
|
|
2827
2834
|
stakeFilter: GraphQLClient.StakeFilterInput;
|
|
2835
|
+
delegationFilter: GraphQLClient.DelegationFilterInput;
|
|
2828
2836
|
}
|
|
2829
2837
|
|
|
2830
2838
|
interface ListTokensParams {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ocap/sdk",
|
|
3
3
|
"description": "Forge javascript SDK packages all-in-one",
|
|
4
|
-
"version": "1.18.
|
|
4
|
+
"version": "1.18.110",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "wangshijun",
|
|
7
7
|
"email": "shijun@arcblock.io",
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
"access": "public"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@arcblock/did-util": "1.18.
|
|
22
|
-
"@ocap/client": "1.18.
|
|
23
|
-
"@ocap/message": "1.18.
|
|
24
|
-
"@ocap/util": "1.18.
|
|
25
|
-
"@ocap/wallet": "1.18.
|
|
21
|
+
"@arcblock/did-util": "1.18.110",
|
|
22
|
+
"@ocap/client": "1.18.110",
|
|
23
|
+
"@ocap/message": "1.18.110",
|
|
24
|
+
"@ocap/util": "1.18.110",
|
|
25
|
+
"@ocap/wallet": "1.18.110",
|
|
26
26
|
"buffer": "6.0.3",
|
|
27
27
|
"debug": "^4.3.4",
|
|
28
28
|
"react-app-polyfill": "^1.0.6",
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"test": "jest --forceExit --detectOpenHandles",
|
|
83
83
|
"coverage": "yarn test -- --coverage"
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "c9f46e6cb5444892e6a228043ee73cc7553a5178"
|
|
86
86
|
}
|