@seal-protocol/backendjs 0.0.70 → 0.0.74

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.
@@ -158,7 +158,7 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
158
158
  * @param {string} [maxReservationDepositPerStable] not supported yet
159
159
  * @param {string} [minRemainingAmountStableTerms] not supported yet
160
160
  * @param {boolean} [onChainValue]
161
- * @param {string} [id] 56-bytes
161
+ * @param {string} [id] 56-bytes in hex format
162
162
  * @param {*} [options] Override http request option.
163
163
  * @throws {RequiredError}
164
164
  */
@@ -369,7 +369,7 @@ export declare const SealClientFp: (configuration?: Configuration) => {
369
369
  * @param {string} [maxReservationDepositPerStable] not supported yet
370
370
  * @param {string} [minRemainingAmountStableTerms] not supported yet
371
371
  * @param {boolean} [onChainValue]
372
- * @param {string} [id] 56-bytes
372
+ * @param {string} [id] 56-bytes in hex format
373
373
  * @param {*} [options] Override http request option.
374
374
  * @throws {RequiredError}
375
375
  */
@@ -1014,7 +1014,7 @@ export interface SealClientGetOrdersRequest {
1014
1014
  */
1015
1015
  readonly onChainValue?: boolean;
1016
1016
  /**
1017
- * 56-bytes
1017
+ * 56-bytes in hex format
1018
1018
  * @type {string}
1019
1019
  * @memberof SealClientGetOrders
1020
1020
  */
@@ -459,7 +459,7 @@ const SealClientAxiosParamCreator = function (configuration) {
459
459
  * @param {string} [maxReservationDepositPerStable] not supported yet
460
460
  * @param {string} [minRemainingAmountStableTerms] not supported yet
461
461
  * @param {boolean} [onChainValue]
462
- * @param {string} [id] 56-bytes
462
+ * @param {string} [id] 56-bytes in hex format
463
463
  * @param {*} [options] Override http request option.
464
464
  * @throws {RequiredError}
465
465
  */
@@ -1050,7 +1050,7 @@ const SealClientFp = function (configuration) {
1050
1050
  * @param {string} [maxReservationDepositPerStable] not supported yet
1051
1051
  * @param {string} [minRemainingAmountStableTerms] not supported yet
1052
1052
  * @param {boolean} [onChainValue]
1053
- * @param {string} [id] 56-bytes
1053
+ * @param {string} [id] 56-bytes in hex format
1054
1054
  * @param {*} [options] Override http request option.
1055
1055
  * @throws {RequiredError}
1056
1056
  */
@@ -63,6 +63,18 @@ export interface SealToken {
63
63
  * @memberof SealToken
64
64
  */
65
65
  'isErc2612'?: boolean;
66
+ /**
67
+ *
68
+ * @type {string}
69
+ * @memberof SealToken
70
+ */
71
+ 'contractName'?: string;
72
+ /**
73
+ *
74
+ * @type {string}
75
+ * @memberof SealToken
76
+ */
77
+ 'contractVersion'?: string;
66
78
  /**
67
79
  *
68
80
  * @type {boolean}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seal-protocol/backendjs",
3
- "version": "v0.0.70",
3
+ "version": "0.0.74",
4
4
  "description": "Javascript SDK for Seal Backend",
5
5
  "author": "amin <amin@refractedlabs.com>",
6
6
  "homepage": "https://github.com/seal-protocol/backend/tree/main/ts-client#readme",