@ocap/client 1.24.9 → 1.25.1
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/dist/base.js +1 -1
- package/dist/browser.d.ts +12 -0
- package/dist/bundle.js +1 -1
- package/dist/extension.js +10 -2
- package/dist/extension.js.map +1 -1
- package/dist/report.html +2 -2
- package/dist/schema/graphql.json +119 -0
- package/dist/schema/graphql.txt +2 -2
- package/dist/types.js +21 -0
- package/dist/types.js.map +1 -1
- package/docs/QUERIES.md +24 -0
- package/docs/README.md +25 -0
- package/lib/base.js +1 -1
- package/lib/extension.js +10 -2
- package/lib/extension.js.map +1 -1
- package/lib/node.d.ts +12 -0
- package/lib/schema/graphql.json +119 -0
- package/lib/schema/graphql.txt +2 -2
- package/lib/types.js +21 -0
- package/lib/types.js.map +1 -1
- package/package.json +14 -14
package/dist/types.js
CHANGED
|
@@ -1101,6 +1101,11 @@
|
|
|
1101
1101
|
"chainName": "abc",
|
|
1102
1102
|
"chainId": 123
|
|
1103
1103
|
},
|
|
1104
|
+
"website": "abc",
|
|
1105
|
+
"metadata": {
|
|
1106
|
+
"typeUrl": "abc",
|
|
1107
|
+
"value": "abc"
|
|
1108
|
+
},
|
|
1104
1109
|
"data": {
|
|
1105
1110
|
"typeUrl": "abc",
|
|
1106
1111
|
"value": "abc"
|
|
@@ -1121,6 +1126,8 @@
|
|
|
1121
1126
|
* @property {string} initialSupply
|
|
1122
1127
|
* @property {string} maxTotalSupply
|
|
1123
1128
|
* @property {...GraphQLClient.ForeignToken} foreignToken
|
|
1129
|
+
* @property {string} website
|
|
1130
|
+
* @property {...GraphQLClient.Any} metadata
|
|
1124
1131
|
* @property {...GraphQLClient.Any} data
|
|
1125
1132
|
*/
|
|
1126
1133
|
|
|
@@ -1706,6 +1713,8 @@
|
|
|
1706
1713
|
* @property {string} renaissanceTime
|
|
1707
1714
|
* @property {...GraphQLClient.ForeignToken} foreignToken
|
|
1708
1715
|
* @property {string} tokenFactoryAddress
|
|
1716
|
+
* @property {string} website
|
|
1717
|
+
* @property {...GraphQLClient.Any} metadata
|
|
1709
1718
|
* @property {...GraphQLClient.Any} data
|
|
1710
1719
|
*/
|
|
1711
1720
|
|
|
@@ -2706,6 +2715,8 @@
|
|
|
2706
2715
|
* @property {string} maxTotalSupply
|
|
2707
2716
|
* @property {...GraphQLClient.ForeignToken} foreignToken
|
|
2708
2717
|
* @property {string} tokenFactoryAddress
|
|
2718
|
+
* @property {string} website
|
|
2719
|
+
* @property {...GraphQLClient.Any} metadata
|
|
2709
2720
|
* @property {...GraphQLClient.StateContext} context
|
|
2710
2721
|
* @property {...GraphQLClient.Any} data
|
|
2711
2722
|
*/
|
|
@@ -2752,6 +2763,7 @@
|
|
|
2752
2763
|
* @property {...GraphQLClient.DelegateConfig} delegate
|
|
2753
2764
|
* @property {Array<...GraphQLClient.TxFeeConfig>} txFee
|
|
2754
2765
|
* @property {...GraphQLClient.TxGasConfig} txGas
|
|
2766
|
+
* @property {...GraphQLClient.TxStakeConfig} txStake
|
|
2755
2767
|
*/
|
|
2756
2768
|
|
|
2757
2769
|
/**
|
|
@@ -2847,6 +2859,15 @@
|
|
|
2847
2859
|
* @property {number} stakeLockPeriod
|
|
2848
2860
|
*/
|
|
2849
2861
|
|
|
2862
|
+
/**
|
|
2863
|
+
* Structure of GraphQLClient.TxStakeConfig
|
|
2864
|
+
*
|
|
2865
|
+
* @memberof GraphQLClient
|
|
2866
|
+
* @typedef {object} GraphQLClient.TxStakeConfig
|
|
2867
|
+
* @property {string} createToken
|
|
2868
|
+
* @property {number} createTokenLockPeriod
|
|
2869
|
+
*/
|
|
2870
|
+
|
|
2850
2871
|
/**
|
|
2851
2872
|
* Structure of GraphQLClient.UnconfirmedTxs
|
|
2852
2873
|
*
|